Lines Matching full:std
49 using SetBreakpointHandler = std::optional<BreakpointId>(PtThread, SourceFileFilter &&, size_t,
50 … std::set<std::string_view> &, const std::string *);
51 using FrameInfoHandler = std::function<void(FrameId, std::string_view, std::string_view, size_t,
52 … const std::vector<Scope> &, const std::optional<RemoteObject> &)>;
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,
69 const std::optional<RemoteObject> &exception, PauseReason pauseReason,
70 const std::function<void(const FrameInfoHandler &)> &enumerateFrames);
72 void CallDebuggerScriptParsed(ScriptId scriptId, std::string_view sourceFile);
74 const std::vector<RemoteObject> &arguments);
80 …void OnCallDebuggerContinueToLocation(std::function<void(PtThread, std::string_view, size_t)> &&ha…
81 void OnCallDebuggerEnable(std::function<void()> &&handler);
83 std::function<std::set<size_t>(std::string_view, size_t, size_t, bool)> &&handler);
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);
103 …std::function<Expected<EvaluationResult, std::string>(PtThread, const std::string &, size_t)> &&ha…
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);
110 …std::function<Expected<EvaluationResult, std::string>(PtThread, const std::string &, size_t)> &&ha…
111 void OnCallDebuggerSetMixedDebugEnabled(std::function<void(PtThread, bool)> &&handler);
112 void OnCallRuntimeEnable(std::function<void(PtThread)> &&handler);
114 std::function<std::vector<PropertyDescriptor>(PtThread, RemoteObjectId, bool)> &&handler);
115 void OnCallRuntimeRunIfWaitingForDebugger(std::function<void(PtThread)> &&handler);
117 … std::function<Expected<EvaluationResult, std::string>(PtThread, const std::string &)> &&handler);
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);
132 std::string_view sourceFile;
133 std::string_view methodName;
138 void SendTargetAttachedToTarget(const std::string &sessionId);
140 const std::function<void(const FrameInfoHandler &)> &enumerateFrames);
142 const std::vector<Scope> &scopeChain, PtThread thread,
143 const std::optional<RemoteObject> &objThis);
144 Expected<std::unique_ptr<UrlBreakpointResponse>, std::string> SetBreakpointByUrl(
145 const std::string &sessionId, const UrlBreakpointRequest &breakpointRequest,
146 const std::function<SetBreakpointHandler> &handler);
147 …void AddLocations(UrlBreakpointResponse &response, const std::set<std::string_view> &sourceFiles, …
150 const std::vector<BreakpointId> &hitBreakpoints);
151 static std::string GetExecutionContextUniqueId(const PtThread &thread);