Home
last modified time | relevance | path

Searched refs:AcceptConnection (Results 1 – 20 of 20) sorted by relevance

/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/src/hfp_hf/
H A Dhfp_hf_data_connection_server.cpp97 int HfpHfDataConnectionServer::AcceptConnection(uint16_t handle) const in AcceptConnection() function in OHOS::bluetooth::HfpHfDataConnectionServer
99 return rfcommServer_.AcceptConnection(handle); in AcceptConnection()
H A Dhfp_hf_rfcomm_connection_server.h62 static int AcceptConnection(uint16_t handle);
H A Dhfp_hf_data_connection_server.h58 int AcceptConnection(uint16_t handle) const;
H A Dhfp_hf_rfcomm_connection_server.cpp48 int HfpHfRfcommConnectionServer::AcceptConnection(uint16_t handle) in AcceptConnection() function in OHOS::bluetooth::HfpHfRfcommConnectionServer
H A Dhfp_hf_profile.cpp145 dataServer_.AcceptConnection(handle); in AcceptDataConnection()
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/src/obex/
H A Dobex_transport.h76 virtual int AcceptConnection() = 0;
93 virtual int AcceptConnection(ObexIncomingConnect &incomingConnect) = 0;
H A Dobex_socket_transport.h148 int AcceptConnection(ObexIncomingConnect &incomingConnect) override;
215 int AcceptConnection() override;
H A Dobex_socket_transport.cpp322 int ObexServerIncomingConnect::AcceptConnection() in AcceptConnection() function in OHOS::bluetooth::ObexServerIncomingConnect
330 return obexTransport_.AcceptConnection(*this); in AcceptConnection()
430 int ObexServerSocketTransport::AcceptConnection(ObexIncomingConnect &incomingConnect) in AcceptConnection() function in OHOS::bluetooth::ObexServerSocketTransport
434 return dataTransport_->AcceptConnection(addr, incomingConnect.GetPort()); in AcceptConnection()
H A Dobex_server.cpp92 incomingConnect.AcceptConnection(); in OnTransportConnect()
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/src/hfp_ag/
H A Dhfp_ag_data_connection_server.cpp102 int HfpAgDataConnectionServer::AcceptConnection(uint16_t handle) const in AcceptConnection() function in OHOS::bluetooth::HfpAgDataConnectionServer
104 return rfcommServer_.AcceptConnection(handle); in AcceptConnection()
H A Dhfp_ag_rfcomm_connection_server.h62 static int AcceptConnection(uint16_t handle);
H A Dhfp_ag_data_connection_server.h58 int AcceptConnection(uint16_t handle) const;
H A Dhfp_ag_rfcomm_connection_server.cpp48 int HfpAgRfcommConnectionServer::AcceptConnection(uint16_t handle) in AcceptConnection() function in OHOS::bluetooth::HfpAgRfcommConnectionServer
H A Dhfp_ag_profile.cpp153 dataServer_.AcceptConnection(handle); in AcceptDataConnection()
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/src/transport/
H A Dtransport.h160 virtual int AcceptConnection(const RawAddress &addr, uint16_t port) = 0;
H A Dtransport_rfcomm.h81 int AcceptConnection(const RawAddress &addr, uint16_t scn) override;
H A Dtransport_l2cap.h80 int AcceptConnection(const RawAddress &addr, uint16_t psm) override;
H A Dtransport_rfcomm.cpp86 int RfcommTransport::AcceptConnection(const RawAddress &addr, uint16_t scn) in AcceptConnection() function in OHOS::bluetooth::RfcommTransport
H A Dtransport_l2cap.cpp89 int L2capTransport::AcceptConnection(const RawAddress &addr, uint16_t psm) in AcceptConnection() function in OHOS::bluetooth::L2capTransport
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/src/sock/
H A Dsocket.cpp153 socket.sockTransport_->AcceptConnection(addr, port); in OnConnectIncomingNative()