/developtools/profiler/device/services/ipc/test/unittest/ |
H A D | unix_socket_server_test.cpp | 38 HWTEST_F(UnixSocketServerTest, StartServer, TestSize.Level1)
in HWTEST_F() 42 ASSERT_TRUE(unixSocketServer.StartServer("server_name", serviceEntry));
in HWTEST_F()
|
H A D | service_entry_test.cpp | 48 serviceEntry.StartServer("test_unix_socket_service_entry"); in HWTEST_F()
|
/developtools/profiler/device/services/ipc/src/ |
H A D | service_entry.cpp | 26 bool ServiceEntry::StartServer(const std::string& addrname) in StartServer() function in ServiceEntry 32 CHECK_TRUE(server->StartServer(addrname, *this), false, "StartServer FAIL"); in StartServer()
|
H A D | unix_socket_server.cpp | 121 bool UnixSocketServer::StartServer(const std::string& addrname, ServiceEntry& p) in StartServer() function in UnixSocketServer 123 CHECK_TRUE(socketHandle_ == -1, false, "StartServer FAIL socketHandle_ != -1"); in StartServer() 128 CHECK_TRUE(sock != -1, false, "StartServer FAIL create socket ERR : %d", errno); in StartServer() 139 "StartServer FAIL bind ERR : %d", errno); in StartServer() 146 CHECK_TRUE(sock != -1, false, "StartServer FAIL GetControlSocket return : %d", sock); in StartServer() 150 "StartServer FAIL listen ERR : %d", errno); in StartServer() 160 PROFILER_LOG_ERROR(LOG_CORE, "StartServer FAIL pthread_create ERR : %s", buf); in StartServer()
|
/developtools/profiler/device/services/ipc/include/ |
H A D | unix_socket_server.h | 34 bool StartServer(const std::string& addrname, ServiceEntry& p);
|
H A D | service_entry.h | 43 bool StartServer(const std::string& addrname);
|
/developtools/hdc/src/test/ |
H A D | ut_runtime.h | 45 static void StartServer(uv_work_t *arg);
|
H A D | ut_runtime.cpp | 66 void Runtime::StartServer(uv_work_t *arg) in StartServer() function in HdcTest::Runtime 180 Base::StartWorkThread(&loopMain, StartServer, funcServerFinish, this); in Initial()
|
/developtools/profiler/device/plugins/native_daemon/src/ |
H A D | hook_service.cpp | 47 if (!serviceEntry_->StartServer(unixSocketName)) { in StartService()
|
/developtools/profiler/device/plugins/ffrt_profiler/service/src/ |
H A D | ffrt_profiler_socket_service.cpp | 45 if (!serviceEntry_->StartServer(unixSocketName)) { in StartService()
|
/developtools/profiler/device/plugins/network_profiler/service/src/ |
H A D | network_profiler_socket_service.cpp | 45 if (!serviceEntry_->StartServer(unixSocketName)) { in StartService()
|
/developtools/hdc/src/host/ |
H A D | client.h | 47 bool StartServer(const string &cmd);
|
H A D | client.cpp | 73 bool HdcClient::StartServer(const string &cmd) in StartServer() function in Hdc::HdcClient 146 thisClass->StartServer(strCmd); in DoCtrlServiceWork()
|
/developtools/profiler/device/plugins/native_daemon/native_memory_profiler_sa/src/ |
H A D | native_memory_profiler_sa_service.cpp | 43 if (!serviceEntry_->StartServer(DEFAULT_UNIX_SOCKET_HOOK_PATH)) { in NativeMemoryProfilerSaService()
|
/developtools/profiler/device/services/plugin_service/src/ |
H A D | plugin_service.cpp | 107 if (!serviceEntry_->StartServer(unixSocketName)) { in StartService()
|