Home
last modified time | relevance | path

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

/arkcompiler/toolchain/tooling/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
Dsession.h154 Session *GetSessionById(uint32_t sessionId) in GetSessionById()
/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/
Dinspector_server.cpp90 auto sessionId = sessionManager_.GetSessionIdByThread(thread); in CallDebuggerPaused() local
116 auto sessionId = sessionManager_.GetSessionIdByThread(thread); in CallDebuggerScriptParsed() local
132 auto sessionId = sessionManager_.GetSessionIdByThread(thread); in CallRuntimeConsoleApiCalled() local
168 auto sessionId = sessionManager_.GetSessionIdByThread(thread); in CallRuntimeExecutionContextCreated() local
192 auto &sessionId = sessionManager_.AddSession(thread); in CallTargetAttachedToTarget() local
200 auto sessionId = sessionManager_.GetSessionIdByThread(thread); in CallTargetDetachedFromTarget() local
221 …"Debugger.continueToLocation", [this, handler = std::move(handler)](auto &sessionId, auto &, auto … in OnCallDebuggerContinueToLocation() argument
290 …server_.OnCall("Debugger.pause", [this, handler = std::move(handler)](auto &sessionId, auto &, aut… in OnCallDebuggerPause() argument
299 [this, handler = std::move(handler)](auto &sessionId, auto &, auto &params) { in OnCallDebuggerRemoveBreakpoint() argument
312 [this, handler = std::move(handler)](auto &sessionId, auto &result, auto &params) { in OnCallDebuggerRestartFrame()
[all …]
/arkcompiler/toolchain/tooling/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()
Dvariable_manager.h77 VariableManager(int32_t sessionId) : sessionId_(sessionId) {} in VariableManager()
Dwatch_manager.cpp23 WatchManager::WatchManager(uint32_t sessionId) in WatchManager()
/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/connection/
Dserver_endpoint_base.cpp21 void ServerEndpointBase::Call(const std::string &sessionId, const char *method, in Call()
30 …EndpointBase::OnCall(method, [this, handler = std::move(handler)](auto &sessionId, auto id, auto &… in OnCall()
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.h43 void Call(const std::string &sessionId, const char *method) in Call()
Dendpoint_base.h68 void Reply(const std::string &sessionId, Id id, Result &&result) in Reply()
/arkcompiler/toolchain/tooling/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/client/domain/
Dtest_client.h29 TestClient(uint32_t sessionId) : sessionId_(sessionId) {} in TestClient()
Druntime_client.h29 RuntimeClient(int32_t sessionId) : sessionId_(sessionId) {} in RuntimeClient()
Ddebugger_client.h34 DebuggerClient(int32_t sessionId) : sessionId_(sessionId) {} in DebuggerClient()
Dprofiler_client.h64 ProfilerClient(uint32_t sessionId) : sessionId_(sessionId) {} in ProfilerClient()
Dheapprofiler_client.h41 HeapProfilerClient(uint32_t sessionId) : sessionId_(sessionId) {} in HeapProfilerClient()
/arkcompiler/toolchain/tooling/client/utils/
Dcli_command.h42 CliCommand(std::vector<std::string> cliCmdStr, uint32_t sessionId) in CliCommand()
Dcli_command.cpp558 uint32_t sessionId = 0; in SessionDelCommand() local
593 uint32_t sessionId = 0; in SessionSwitchCommand() local
/arkcompiler/jsvm/src/inspector/
Djs_native_api_v8_inspector.cpp487 …RequestToServer(TransportAction action, int sessionId, std::unique_ptr<v8_inspector::StringBuffer>… in RequestToServer()
508 int sessionId; member in v8impl::__anon3c61eead0411::RequestToServer
529 void Post(int sessionId, TransportAction action, std::unique_ptr<StringBuffer> message) in Post()
597 void Post(int sessionId, TransportAction action, std::unique_ptr<StringBuffer> message) in Post()
669 void InspectorIoDelegate::StartSession(int sessionId, const std::string& inTargetId) in StartSession()
680 void InspectorIoDelegate::MessageReceived(int sessionId, const std::string& message) in MessageReceived()
688 void InspectorIoDelegate::EndSession(int sessionId) in EndSession()
948 SameThreadInspectorSession(int sessionId, std::shared_ptr<InspectorClient> client) in SameThreadInspectorSession()
955 int sessionId; member in v8impl::__anon3c61eead0711::SameThreadInspectorSession
1035 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()
339 void InspectorSocketServer::SessionTerminated(int sessionId) in SessionTerminated()
360 bool InspectorSocketServer::HandleGetRequest(int sessionId, const std::string& hostName, const std:… in HandleGetRequest()
528 void InspectorSocketServer::Send(int sessionId, const std::string& message) in Send()
Dinspector_socket_server.h96 void MessageReceived(int sessionId, const std::string& message) in MessageReceived()