Home
last modified time | relevance | path

Searched refs:Connect (Results 1 – 24 of 24) sorted by relevance

/developtools/profiler/device/services/ipc/test/unittest/
Dunix_socket_client_test.cpp39 HWTEST_F(UnixSocketClientTest, Connect, TestSize.Level1)
43 ASSERT_TRUE(!unixSocketClient.Connect("asdf", serviceBase));
Dunix_socket_server_test.cpp48 ASSERT_TRUE(unixSocketClient.Connect("server_name", serviceBase));
Dservice_entry_test.cpp57 ASSERT_TRUE(pluginClient.Connect("test_unix_socket_service_entry"));
/developtools/profiler/hiebpf/test/unittest/
Dipc_unix_socket_test.cpp53 ASSERT_FALSE(client.Connect(TEST_PATH_NAME));
62 ASSERT_TRUE(client.Connect(TEST_PATH_NAME));
103 ASSERT_TRUE(client.Connect(TEST_PATH_NAME));
104 ASSERT_FALSE(client.Connect(TEST_PATH_NAME));
/developtools/profiler/device/plugins/native_hook/src/
Dhook_socket_client.cpp38 Connect(DEFAULT_UNIX_SOCKET_HOOK_FULL_PATH); in HookSocketClient()
51 bool HookSocketClient::Connect(const std::string addrname) in Connect() function in HookSocketClient
57 if (!unixSocketClient_->Connect(addrname, *this)) { in Connect()
/developtools/profiler/device/services/ipc/include/
Dunix_socket_client.h27 bool Connect(const std::string addrname, ServiceBase& serviceBase);
/developtools/hdc/src/host/
Dhost_tcp.h31 static void Connect(uv_connect_t *connection, int status);
Dhost_tcp.cpp96 void HdcHostTCP::Connect(uv_connect_t *connection, int status) in Connect() function in Hdc::HdcHostTCP
148 uv_tcp_connect(conn, (uv_tcp_t *)&hSession->hWorkTCP, (const struct sockaddr *)&dest, Connect); in ConnectDaemon()
Dext_client.h42 void Connect(const std::string &str);
Dclient.h37 static void Connect(uv_connect_t *connection, int status);
Dclient.cpp371 … uv_tcp_connect(conn, (uv_tcp_t *)&channel->hWorkTCP, (const struct sockaddr *)&destv4, Connect); in ConnectServerForClient()
376 … uv_tcp_connect(conn, (uv_tcp_t *)&channel->hWorkTCP, (const struct sockaddr *)&dest, Connect); in ConnectServerForClient()
501 void HdcClient::Connect(uv_connect_t *connection, int status) in Connect() function in Hdc::HdcClient
Dext_client.cpp77 Connect(command); in ExecuteCommand()
142 void ExtClient::Connect(const std::string &str) in Connect() function in Hdc::ExtClient
/developtools/profiler/device/plugins/native_hook/include/
Dhook_socket_client.h29 bool Connect(const std::string addrname);
/developtools/profiler/hiebpf/include/
Dipc_unix_socket.h63 bool Connect(const std::string &pathname = UNIX_SOCKET_DEFAULT_PATHNAME);
/developtools/profiler/device/services/plugin_service/test/moduletest/
Dplugin_service_test.cpp54 ASSERT_FALSE(g_pluginClient->Connect("test")); in SetUpTestCase()
/developtools/hdc/src/test/jdwp/
DHdcJdwpSimulator.h25 bool Connect();
Dmain.cpp123 if (!clsHdcJdwpSimulator->Connect()) { in main()
DHdcJdwpSimulator.cpp276 bool HdcJdwpSimulator::Connect() in Connect() function in HdcJdwpSimulator
/developtools/profiler/device/services/ipc/src/
Dunix_socket_client.cpp33 bool UnixSocketClient::Connect(const std::string addrname, ServiceBase& serviceBase) in Connect() function in UnixSocketClient
Dipc_generator_impl.cpp98 printf("Socket Connect failed\n");
/developtools/profiler/hiebpf/src/
Dhiebpf.cpp121 if (!ipcClient.Connect()) { in StopHiebpfServer()
146 if (!ipcClient.Connect()) { in CheckHiebpfServer()
Dipc_unix_socket.cpp138 bool IpcUnixSocketClient::Connect(const std::string &pathname) in Connect() function in OHOS::Developtools::Hiebpf::IpcUnixSocketClient
/developtools/profiler/device/plugins/api/src/
Dcommand_poller.cpp38 return Connect(DEFAULT_UNIX_SOCKET_FULL_PATH); in OnConnect()
/developtools/profiler/device/services/plugin_service/test/unittest/
Dplugin_service_test.cpp58 pluginClient_->Connect(DEFAULT_UNIX_SOCKET_FULL_PATH); in SetUp()