Lines Matching full:void
42 void NotifyPaused(std::optional<JSPtLocation> location, PauseReason reason);
43 void NotifyPendingJobEntry();
44 void NotifyHandleProtocolCommand();
45 void NotifyNativeCalling(const void *nativeAddress);
109 void Dispatch(const DispatchRequest &request) override;
110 void Enable(const DispatchRequest &request);
111 void Disable(const DispatchRequest &request);
112 void EvaluateOnCallFrame(const DispatchRequest &request);
113 void GetPossibleBreakpoints(const DispatchRequest &request);
114 void GetScriptSource(const DispatchRequest &request);
115 void Pause(const DispatchRequest &request);
116 void RemoveBreakpoint(const DispatchRequest &request);
117 void Resume(const DispatchRequest &request);
118 void SetAsyncCallStackDepth(const DispatchRequest &request);
119 void SetBreakpointByUrl(const DispatchRequest &request);
120 void SetPauseOnExceptions(const DispatchRequest &request);
121 void StepInto(const DispatchRequest &request);
122 void StepOut(const DispatchRequest &request);
123 void StepOver(const DispatchRequest &request);
124 void SetMixedDebugEnabled(const DispatchRequest &request);
125 void SetBlackboxPatterns(const DispatchRequest &request);
126 void ReplyNativeCalling(const DispatchRequest &request);
132 using AgentHandler = void (DebuggerImpl::DispatcherImpl::*)(const DispatchRequest &request);
146 void SaveCallFrameHandler(const FrameHandler *frameHandler);
151 void GetLocalVariables(const FrameHandler *frameHandler, panda_file::File::EntityId methodId,
153 void CleanUpOnPaused();
154 …void UpdateScopeObject(const FrameHandler *frameHandler, std::string_view varName, Local<JSValueRe…
155 void ClearSingleStepper();
166 void BreakpointResolved(const EcmaVM *vm);
167 void Paused(const EcmaVM *vm, const tooling::Paused &paused);
168 void Resumed(const EcmaVM *vm);
169 void NativeCalling(const EcmaVM *vm, const tooling::NativeCalling &nativeCalling);
170 void ScriptFailedToParse(const EcmaVM *vm);
171 void ScriptParsed(const EcmaVM *vm, const PtScript &script);
172 void WaitForDebugger(const EcmaVM *vm);
173 void RunIfWaitingForDebugger(const EcmaVM *vm);