Searched refs:sockInfo (Results 1 - 4 of 4) sorted by relevance
/arkcompiler/toolchain/tooling/client/session/ |
H A D | session.cpp | 37 Session::Session(uint32_t sessionId, std::string& sockInfo) in Session() argument 38 : sessionId_(sessionId), sockInfo_(sockInfo), domainManager_(sessionId), breakpoint_(sessionId), in Session() 108 int SessionManager::CreateSessionById(uint32_t sessionId, std::string& sockInfo) in CreateSessionById() argument 110 sessions_[sessionId] = std::make_unique<Session>(sessionId, sockInfo); in CreateSessionById() 119 int SessionManager::CreateNewSession(std::string& sockInfo) in CreateNewSession() argument 129 if (sessions_[i]->GetSockInfo() == sockInfo) { in CreateNewSession() 135 return CreateSessionById(sessionId, sockInfo); in CreateNewSession() 141 int SessionManager::CreateDefaultSession(std::string& sockInfo) in CreateDefaultSession() argument 143 return CreateSessionById(0, sockInfo); in CreateDefaultSession() 197 int SessionManager::CreateTestSession(std::string& sockInfo) in CreateTestSession() argument [all...] |
H A D | session.h | 40 explicit Session(uint32_t sessionId, std::string& sockInfo); 162 int CreateSessionById(uint32_t sessionId, std::string& sockInfo); 163 int CreateNewSession(std::string& sockInfo); 164 int CreateDefaultSession(std::string& sockInfo); 169 int CreateTestSession(std::string& sockInfo);
|
/arkcompiler/toolchain/tooling/test/client_utils/ |
H A D | test_util.cpp | 106 std::string sockInfo = pidStr + "PandaDebugger"; in ForkSocketClient() local 108 std::string sockInfo = std::to_string(port); in ForkSocketClient() local 110 int ret = SessionManager::getInstance().CreateTestSession(sockInfo); in ForkSocketClient()
|
/arkcompiler/toolchain/tooling/client/ark_cli/ |
H A D | main.cpp | 166 std::string sockInfo(argv[1]); in Main() 167 if (SessionManager::getInstance().CreateDefaultSession(sockInfo)) { in Main()
|
Completed in 2 milliseconds