Lines Matching full:void
51 using FrameInfoHandler = std::function<void(FrameId, std::string_view, std::string_view, size_t,
61 void Kill();
62 void Run(const std::string& msg);
64 void OnValidate(std::function<void()> &&handler);
65 void OnOpen(std::function<void()> &&handler);
66 void OnFail(std::function<void()> &&handler);
68 void CallDebuggerPaused(PtThread thread, const std::vector<BreakpointId> &hitBreakpoints,
70 const std::function<void(const FrameInfoHandler &)> &enumerateFrames);
71 void CallDebuggerResumed(PtThread thread);
72 void CallDebuggerScriptParsed(ScriptId scriptId, std::string_view sourceFile);
73 void CallRuntimeConsoleApiCalled(PtThread thread, ConsoleCallType type, uint64_t timestamp,
75 void CallRuntimeExecutionContextCreated(PtThread thread);
76 void CallRuntimeExecutionContextsCleared();
77 void CallTargetAttachedToTarget(PtThread thread);
78 void CallTargetDetachedFromTarget(PtThread thread);
80 …void OnCallDebuggerContinueToLocation(std::function<void(PtThread, std::string_view, size_t)> &&ha…
81 void OnCallDebuggerEnable(std::function<void()> &&handler);
82 void OnCallDebuggerGetPossibleBreakpoints(
84 void OnCallDebuggerGetScriptSource(std::function<std::string(std::string_view)> &&handler);
85 void OnCallDebuggerPause(std::function<void(PtThread)> &&handler);
86 void OnCallDebuggerRemoveBreakpoint(std::function<void(PtThread, BreakpointId)> &&handler);
87 …void OnCallDebuggerRemoveBreakpointsByUrl(std::function<void(PtThread, SourceFileFilter)> &&handle…
88 void OnCallDebuggerRestartFrame(std::function<void(PtThread, FrameId)> &&handler);
89 void OnCallDebuggerResume(std::function<void(PtThread)> &&handler);
90 void OnCallDebuggerSetAsyncCallStackDepth(std::function<void(PtThread)> &&handler);
91 void OnCallDebuggerSetBlackboxPatterns(std::function<void(PtThread)> &&handler);
92 void OnCallDebuggerSmartStepInto(std::function<void(PtThread)> &&handler);
93 void OnCallDebuggerSetBreakpoint(std::function<SetBreakpointHandler> &&handler);
94 void OnCallDebuggerSetBreakpointByUrl(std::function<SetBreakpointHandler> &&handler);
95 …void OnCallDebuggerGetPossibleAndSetBreakpointByUrl(std::function<SetBreakpointHandler> &&handler);
96 void OnCallDebuggerSetBreakpointsActive(std::function<void(PtThread, bool)> &&handler);
97 void OnCallDebuggerSetSkipAllPauses(std::function<void(PtThread, bool)> &&handler);
98 …void OnCallDebuggerSetPauseOnExceptions(std::function<void(PtThread, PauseOnExceptionsState)> &&ha…
99 void OnCallDebuggerStepInto(std::function<void(PtThread)> &&handler);
100 void OnCallDebuggerStepOut(std::function<void(PtThread)> &&handler);
101 void OnCallDebuggerStepOver(std::function<void(PtThread)> &&handler);
102 void OnCallDebuggerEvaluateOnCallFrame(
104 void OnCallDebuggerClientDisconnect(std::function<void(PtThread)> &&handler);
105 void OnCallDebuggerDisable(std::function<void(PtThread)> &&handler);
106 void OnCallDebuggerDropFrame(std::function<void(PtThread)> &&handler);
107 void OnCallDebuggerSetNativeRange(std::function<void(PtThread)> &&handler);
108 void OnCallDebuggerReplyNativeCalling(std::function<void(PtThread)> &&handler);
109 void OnCallDebuggerCallFunctionOn(
111 void OnCallDebuggerSetMixedDebugEnabled(std::function<void(PtThread, bool)> &&handler);
112 void OnCallRuntimeEnable(std::function<void(PtThread)> &&handler);
113 void OnCallRuntimeGetProperties(
115 void OnCallRuntimeRunIfWaitingForDebugger(std::function<void(PtThread)> &&handler);
116 void OnCallRuntimeEvaluate(
118 void OnCallProfilerEnable();
119 void OnCallProfilerDisable();
120 void OnCallProfilerSetSamplingInterval(std::function<void(int32_t)> &&handler);
121 void OnCallProfilerStart(std::function<Expected<bool, std::string>()> &&handler);
122 void OnCallProfilerStop(std::function<Expected<Profile, std::string>()> &&handler);
138 void SendTargetAttachedToTarget(const std::string &sessionId);
139 void EnumerateCallFrames(JsonArrayBuilder &callFrames, PtThread thread,
140 const std::function<void(const FrameInfoHandler &)> &enumerateFrames);
141 void AddCallFrameInfo(JsonArrayBuilder &callFrames, const CallFrameInfo &callFrameInfo,
147 …void AddLocations(UrlBreakpointResponse &response, const std::set<std::string_view> &sourceFiles, …
149 static void AddHitBreakpoints(JsonArrayBuilder &hitBreakpointsBuilder,