Lines Matching defs:sessionId
110 auto sessionId = sessionManager_.GetSessionIdByThread(thread); in CallDebuggerPaused() local
151 auto sessionId = sessionManager_.GetSessionIdByThread(thread); in CallRuntimeConsoleApiCalled() local
187 auto sessionId = sessionManager_.GetSessionIdByThread(thread); in CallRuntimeExecutionContextCreated() local
211 auto &sessionId = sessionManager_.AddSession(thread); in CallTargetAttachedToTarget() local
219 auto sessionId = sessionManager_.GetSessionIdByThread(thread); in CallTargetDetachedFromTarget() local
240 …[this, handler = std::move(handler)](auto &sessionId, const auto ¶ms) -> Server::MethodRespons… in OnCallDebuggerContinueToLocation()
331 server_.OnCall("Debugger.pause", [this, handler = std::move(handler)](auto &sessionId, auto &) { in OnCallDebuggerPause() argument
342 … [this, handler = std::move(handler)](auto &sessionId, auto ¶ms) -> Server::MethodResponse { in OnCallDebuggerRemoveBreakpoint()
384 … [this, handler = std::move(handler)](auto &sessionId, auto ¶ms) -> Server::MethodResponse { in OnCallDebuggerRemoveBreakpointsByUrl()
407 … [this, handler = std::move(handler)](auto &sessionId, auto ¶ms) -> Server::MethodResponse { in OnCallDebuggerRestartFrame()
424 … server_.OnCall("Debugger.resume", [this, handler = std::move(handler)](auto &sessionId, auto &) { in OnCallDebuggerResume() argument
452 … [this, handler = std::move(handler)](auto &sessionId, auto ¶ms) -> Server::MethodResponse { in OnCallDebuggerSetBreakpoint()
480 const std::string &sessionId, const UrlBreakpointRequest &breakpointRequest, in SetBreakpointByUrl()
516 …[this, handler = std::move(handler)](auto &sessionId, const JsonObject ¶ms) -> Server::MethodR… in OnCallDebuggerSetBreakpointByUrl()
562 …[this, handler = std::move(handler)](auto &sessionId, const JsonObject ¶ms) -> Server::MethodR… in OnCallDebuggerGetPossibleAndSetBreakpointByUrl()
599 …[this, handler = std::move(handler)](auto &sessionId, const JsonObject ¶ms) -> Server::MethodR… in OnCallDebuggerSetBreakpointsActive()
620 …[this, handler = std::move(handler)](auto &sessionId, const JsonObject ¶ms) -> Server::MethodR… in OnCallDebuggerSetSkipAllPauses()
642 …[this, handler = std::move(handler)](auto &sessionId, const JsonObject ¶ms) -> Server::MethodR… in OnCallDebuggerSetPauseOnExceptions()
677 …server_.OnCall("Debugger.stepInto", [this, handler = std::move(handler)](auto &sessionId, auto &) { in OnCallDebuggerStepInto() argument
686 … server_.OnCall("Debugger.stepOut", [this, handler = std::move(handler)](auto &sessionId, auto &) { in OnCallDebuggerStepOut() argument
695 …server_.OnCall("Debugger.stepOver", [this, handler = std::move(handler)](auto &sessionId, auto &) { in OnCallDebuggerStepOver() argument
707 …[this, handler = std::move(handler)](auto &sessionId, const JsonObject ¶ms) -> Server::MethodR… in OnCallDebuggerEvaluateOnCallFrame()
735 …[this, handler = std::move(handler)](auto &sessionId, const JsonObject ¶ms) -> Server::MethodR… in OnCallDebuggerCallFunctionOn()
762 …[this, handler = std::move(handler)](auto &sessionId, const JsonObject ¶ms) -> Server::MethodR… in OnCallDebuggerSetMixedDebugEnabled()
781 … server_.OnCall("Debugger.disable", [this, handler = std::move(handler)](auto &sessionId, auto &) { in OnCallDebuggerDisable() argument
790 …OnCall("Debugger.clientDisconnect", [this, handler = std::move(handler)](auto &sessionId, auto &) { in OnCallDebuggerClientDisconnect() argument
799 …("Debugger.setAsyncCallStackDepth", [this, handler = std::move(handler)](auto &sessionId, auto &) { in OnCallDebuggerSetAsyncCallStackDepth() argument
808 …all("Debugger.setBlackboxPatterns", [this, handler = std::move(handler)](auto &sessionId, auto &) { in OnCallDebuggerSetBlackboxPatterns() argument
817 …server_.OnCall("Debugger.smartStepInto", [this, handler = std::move(handler)](auto &sessionId, aut… in OnCallDebuggerSmartStepInto() argument
826 …server_.OnCall("Debugger.dropFrame", [this, handler = std::move(handler)](auto &sessionId, auto &)… in OnCallDebuggerDropFrame() argument
835 …server_.OnCall("Debugger.setNativeRange", [this, handler = std::move(handler)](auto &sessionId, au… in OnCallDebuggerSetNativeRange() argument
844 …Call("Debugger.replyNativeCalling", [this, handler = std::move(handler)](auto &sessionId, auto &) { in OnCallDebuggerReplyNativeCalling() argument
853 server_.OnCall("Runtime.enable", [this, handler = std::move(handler)](auto &sessionId, auto &) { in OnCallRuntimeEnable() argument
880 …[this, handler = std::move(handler)](auto &sessionId, const JsonObject ¶ms) -> Server::MethodR… in OnCallRuntimeGetProperties()
902 …("Runtime.runIfWaitingForDebugger", [this, handler = std::move(handler)](auto &sessionId, auto &) { in OnCallRuntimeRunIfWaitingForDebugger() argument
914 …[this, handler = std::move(handler)](auto &sessionId, const JsonObject ¶ms) -> Server::MethodR… in OnCallRuntimeEvaluate()
997 void InspectorServer::SendTargetAttachedToTarget(const std::string &sessionId) in SendTargetAttachedToTarget()