Home
last modified time | relevance | path

Searched defs:sessionId (Results 1 – 25 of 30) sorted by relevance

12

/arkcompiler/toolchain/tooling/dynamic/client/session/
Dsession.cpp26 int sessionId = *(uint32_t *)arg; in SocketMessageThread() local
32 Session::Session(uint32_t sessionId, std::string& sockInfo) in Session()
103 int SessionManager::CreateSessionById(uint32_t sessionId, std::string& sockInfo) in CreateSessionById()
116 uint32_t sessionId = MAX_SESSION_NUM; in CreateNewSession() local
141 int SessionManager::DelSessionById(uint32_t sessionId) in DelSessionById()
172 int SessionManager::SessionSwitch(uint32_t sessionId) in SessionSwitch()
184 for (uint32_t sessionId = 0; sessionId < MAX_SESSION_NUM; ++sessionId) { in CmdForAllSessions() local
194 uint32_t sessionId = 0; in CreateTestSession() local
/arkcompiler/toolchain/tooling/static/
Dinspector_server.cpp110 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 &params) -> 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 &params) -> Server::MethodResponse { in OnCallDebuggerRemoveBreakpoint()
384 … [this, handler = std::move(handler)](auto &sessionId, auto &params) -> Server::MethodResponse { in OnCallDebuggerRemoveBreakpointsByUrl()
407 … [this, handler = std::move(handler)](auto &sessionId, auto &params) -> Server::MethodResponse { in OnCallDebuggerRestartFrame()
[all …]
/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/
Dinspector_server.cpp110 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 &params) -> 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 &params) -> Server::MethodResponse { in OnCallDebuggerRemoveBreakpoint()
384 … [this, handler = std::move(handler)](auto &sessionId, auto &params) -> Server::MethodResponse { in OnCallDebuggerRemoveBreakpointsByUrl()
407 … [this, handler = std::move(handler)](auto &sessionId, auto &params) -> Server::MethodResponse { in OnCallDebuggerRestartFrame()
[all …]
/arkcompiler/toolchain/tooling/dynamic/client/manager/
Dmessage_manager.h35 void MessagePush(uint32_t sessionId, std::string& message) in MessagePush()
42 bool MessagePop(uint32_t& sessionId, std::string& message) in MessagePop()
Dstack_manager.h33 StackManager(int32_t sessionId) : sessionId_(sessionId) {} in StackManager()
Dsource_manager.h32 SourceManager(int32_t sessionId) : sessionId_(sessionId) {} in SourceManager()
Dbreakpoint_manager.h39 BreakPointManager(int32_t sessionId) : sessionId_(sessionId) {} in BreakPointManager()
Ddomain_manager.cpp23 DomainManager::DomainManager(uint32_t sessionId) in DomainManager()
/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/connection/
Dserver_endpoint_base.cpp35 void ServerEndpointBase::Call(const std::string &sessionId, const char *method, in Call()
43 …EndpointBase::OnCall(method, [this, handler = std::move(handler)](auto &sessionId, auto id, auto &… in OnCall()
Dendpoint_base.h71 void Reply(const std::string &sessionId, Id id, Result &&result) in Reply()
83 void ReplyError(const std::string &sessionId, Id id, JRPCError &&error) in ReplyError()
Dendpoint_base.cpp41 auto sessionId = request.GetValue<JsonObject::StringT>("sessionId"); in HandleMessage() local
75 void EndpointBase::Call(const std::string &sessionId, std::optional<Id> id, const char *method, in Call()
Dserver.h52 void Call(const std::string &sessionId, const char *method) in Call()
/arkcompiler/toolchain/tooling/static/connection/
Dserver_endpoint_base.cpp35 void ServerEndpointBase::Call(const std::string &sessionId, const char *method, in Call()
43 …EndpointBase::OnCall(method, [this, handler = std::move(handler)](auto &sessionId, auto id, auto &… in OnCall()
Dendpoint_base.h71 void Reply(const std::string &sessionId, Id id, Result &&result) in Reply()
83 void ReplyError(const std::string &sessionId, Id id, JRPCError &&error) in ReplyError()
Dendpoint_base.cpp41 auto sessionId = request.GetValue<JsonObject::StringT>("sessionId"); in HandleMessage() local
75 void EndpointBase::Call(const std::string &sessionId, std::optional<Id> id, const char *method, in Call()
Dserver.h52 void Call(const std::string &sessionId, const char *method) in Call()
/arkcompiler/toolchain/tooling/dynamic/client/ark_cli/
Dmain.cpp59 void InputMessageInSession(uint32_t sessionId, std::vector<std::string>& cliCmdStr) in InputMessageInSession()
83 uint32_t sessionId = SessionManager::getInstance().GetCurrentSessionId(); in InputOnMessage() local
133 uint32_t sessionId = 0; in SocketOnMessage() local
/arkcompiler/toolchain/tooling/dynamic/client/domain/
Dtest_client.h29 TestClient(uint32_t sessionId) : sessionId_(sessionId) {} in TestClient()
Druntime_client.h29 RuntimeClient(int32_t sessionId) : sessionId_(sessionId) {} in RuntimeClient()
Dprofiler_client.h64 ProfilerClient(uint32_t sessionId) : sessionId_(sessionId) {} in ProfilerClient()
Ddebugger_client.h39 DebuggerClient(int32_t sessionId) : sessionId_(sessionId) {} in DebuggerClient()
Dheapprofiler_client.h41 HeapProfilerClient(uint32_t sessionId) : sessionId_(sessionId) {} in HeapProfilerClient()
/arkcompiler/toolchain/tooling/dynamic/client/utils/
Dcli_command.h42 CliCommand(std::vector<std::string> cliCmdStr, uint32_t sessionId) in CliCommand()
/arkcompiler/jsvm/src/inspector/
Djs_native_api_v8_inspector.cpp489 …RequestToServer(TransportAction action, int sessionId, std::unique_ptr<v8_inspector::StringBuffer>… in RequestToServer()
510 int sessionId; member in v8impl::__anona063bacf0411::RequestToServer
531 void Post(int sessionId, TransportAction action, std::unique_ptr<StringBuffer> message) in Post()
599 void Post(int sessionId, TransportAction action, std::unique_ptr<StringBuffer> message) in Post()
671 void InspectorIoDelegate::StartSession(int sessionId, const std::string& inTargetId) in StartSession()
682 void InspectorIoDelegate::MessageReceived(int sessionId, const std::string& message) in MessageReceived()
690 void InspectorIoDelegate::EndSession(int sessionId) in EndSession()
950 SameThreadInspectorSession(int sessionId, std::shared_ptr<InspectorClient> client) in SameThreadInspectorSession()
957 int sessionId; member in v8impl::__anona063bacf0711::SameThreadInspectorSession
1037 int sessionId = nextSessionId++; in ConnectFrontend() local
[all …]
Dinspector_socket_server.cpp210 … Delegate(InspectorSocketServer* server, int sessionId) : server(server), usessionId(sessionId) {} in Delegate()
321 SocketSession* InspectorSocketServer::Session(int sessionId) in Session()
327 void InspectorSocketServer::SessionStarted(int sessionId, const std::string& targetId, const std::s… in SessionStarted()
340 void InspectorSocketServer::SessionTerminated(int sessionId) in SessionTerminated()
361 bool InspectorSocketServer::HandleGetRequest(int sessionId, const std::string& hostName, const std:… in HandleGetRequest()
530 void InspectorSocketServer::Send(int sessionId, const std::string& message) in Send()

12