Lines Matching refs:port
286 void BluetoothHci::SetUpHciServer(int port, const std::function<void(int)>& connection_callback) { in SetUpHciServer() argument
287 int socket_fd = remote_hci_transport_.SetUp(port); in SetUpHciServer()
294 LOG_ERROR("Remote HCI channel SetUp(%d) failed.", port); in SetUpHciServer()
313 void BluetoothHci::SetUpLinkLayerServer(int port, const std::function<void(int)>& connection_callba… in SetUpLinkLayerServer() argument
314 int socket_fd = remote_link_layer_transport_.SetUp(port); in SetUpLinkLayerServer()
321 LOG_ERROR("Remote LinkLayer channel SetUp(%d) failed.", port); in SetUpLinkLayerServer()
339 int BluetoothHci::ConnectToRemoteServer(const std::string& server, int port) { in ConnectToRemoteServer() argument
358 serv_addr.sin_port = htons(port); in ConnectToRemoteServer()
362 LOG_INFO("connect() failed for %s@%d: %s", server.c_str(), port, in ConnectToRemoteServer()
374 void BluetoothHci::SetUpTestChannel(int port) { in SetUpTestChannel() argument
375 int socket_fd = test_channel_transport_.SetUp(port); in SetUpTestChannel()
382 LOG_ERROR("Test channel SetUp(%d) failed.", port); in SetUpTestChannel()