Home
last modified time | relevance | path

Searched refs:ConnectSco (Results 1 - 25 of 29) sorted by relevance

12

/foundation/communication/bluetooth/frameworks/inner/ipc/interface/
H A Di_bluetooth_hfp_ag.h37 virtual int32_t ConnectSco(uint8_t callType) = 0;
39 virtual bool ConnectSco() = 0;
H A Di_bluetooth_hfp_hf.h30 virtual bool ConnectSco(const BluetoothRawAddress &device) = 0;
/foundation/communication/bluetooth_service/services/bluetooth/server/include/
H A Dbluetooth_hfp_ag_server.h38 bool ConnectSco() override;
56 int32_t ConnectSco(uint8_t callType) override;
H A Dbluetooth_hfp_hf_server.h32 bool ConnectSco(const BluetoothRawAddress &device) override;
/foundation/communication/bluetooth/interfaces/inner_api/include/
H A Dbluetooth_hfp_ag.h201 int32_t ConnectSco(uint8_t callType);
218 bool ConnectSco();
H A Dbluetooth_hfp_hf.h188 bool ConnectSco(const BluetoothRemoteDevice &device);
/foundation/communication/bluetooth/frameworks/inner/ipc/include/
H A Dbluetooth_hfp_ag_proxy.h34 int32_t ConnectSco(uint8_t callType) override;
36 bool ConnectSco() override;
H A Dbluetooth_hfp_hf_proxy.h28 bool ConnectSco(const BluetoothRawAddress &device) override;
/foundation/communication/bluetooth/frameworks/js/napi/include/
H A Dnapi_bluetooth_hfp_hf.h37 static napi_value ConnectSco(napi_env env, napi_callback_info info);
H A Dnapi_bluetooth_hfp_ag.h38 static napi_value ConnectSco(napi_env env, napi_callback_info info);
/foundation/communication/bluetooth/frameworks/inner/src/
H A Dbluetooth_hfp_ag.cpp196 int32_t ConnectSco(uint8_t callType) in ConnectSco() function
200 return proxy->ConnectSco(callType); in ConnectSco()
210 bool ConnectSco() in ConnectSco() function
214 CHECK_AND_RETURN_LOG_RET(proxy != nullptr, proxy->ConnectSco(), "failed: no proxy"); in ConnectSco()
524 int32_t HandsFreeAudioGateway::ConnectSco(uint8_t callType) in ConnectSco() function in OHOS::Bluetooth::HandsFreeAudioGateway
533 return pimpl->ConnectSco(callType); in ConnectSco()
548 bool HandsFreeAudioGateway::ConnectSco() in ConnectSco() function in OHOS::Bluetooth::HandsFreeAudioGateway
H A Dbluetooth_hfp_hf.cpp158 bool ConnectSco(const BluetoothRemoteDevice &device) in ConnectSco() function
163 return proxy->ConnectSco(BluetoothRawAddress(device.GetDeviceAddr())); in ConnectSco()
489 bool HandsFreeUnit::ConnectSco(const BluetoothRemoteDevice &device) in ConnectSco() function in OHOS::Bluetooth::HandsFreeUnit
499 return pimpl->ConnectSco(device); in ConnectSco()
/foundation/communication/bluetooth_service/services/bluetooth/service/include/
H A Dinterface_profile_hfp_ag.h173 virtual bool ConnectSco() = 0;
H A Dinterface_profile_hfp_hf.h190 virtual bool ConnectSco(const RawAddress &device) = 0;
/foundation/communication/bluetooth/frameworks/js/napi/src/hfp/
H A Dnapi_bluetooth_hfp_ag.cpp49 DECLARE_NAPI_FUNCTION("connectSco", ConnectSco), in DefineHandsFreeAudioGatewayJSClass()
205 napi_value NapiHandsFreeAudioGateway::ConnectSco(napi_env env, napi_callback_info info) in ConnectSco() function in OHOS::Bluetooth::NapiHandsFreeAudioGateway
231 isOK = profile->ConnectSco(); in ConnectSco()
H A Dnapi_bluetooth_hfp_hf.cpp42 DECLARE_NAPI_FUNCTION("connectSco", ConnectSco), in DefineHandsFreeUnitJSClass()
227 napi_value NapiHandsFreeUnit::ConnectSco(napi_env env, napi_callback_info info) in ConnectSco() function in OHOS::Bluetooth::NapiHandsFreeUnit
251 bool isOK = profile->ConnectSco(device); in ConnectSco()
/foundation/communication/bluetooth_service/services/bluetooth/server/src/
H A Dbluetooth_hfp_ag_server.cpp266 bool BluetoothHfpAgServer::ConnectSco() in ConnectSco() function in OHOS::Bluetooth::BluetoothHfpAgServer
274 return pimpl->HfpAgService_->ConnectSco(); in ConnectSco()
427 int BluetoothHfpAgServer::ConnectSco(uint8_t callType) in ConnectSco() function in OHOS::Bluetooth::BluetoothHfpAgServer
H A Dbluetooth_hfp_hf_server.cpp193 bool BluetoothHfpHfServer::ConnectSco(const BluetoothRawAddress &device) { in ConnectSco() function in OHOS::Bluetooth::BluetoothHfpHfServer
197 return pimpl->HfpHfService_->ConnectSco(addr); in ConnectSco()
/foundation/communication/bluetooth_service/services/bluetooth/service/src/hfp_hf/
H A Dhfp_hf_service.h158 bool ConnectSco(const RawAddress &device) override;
/foundation/communication/bluetooth/frameworks/inner/ipc/src/
H A Dbluetooth_hfp_ag_proxy.cpp141 int32_t BluetoothHfpAgProxy::ConnectSco(uint8_t callType) in ConnectSco() function in OHOS::Bluetooth::BluetoothHfpAgProxy
173 bool BluetoothHfpAgProxy::ConnectSco() in ConnectSco() function in OHOS::Bluetooth::BluetoothHfpAgProxy
H A Dbluetooth_hfp_hf_proxy.cpp21 bool BluetoothHfpHfProxy::ConnectSco(const BluetoothRawAddress &device) in ConnectSco() function in OHOS::Bluetooth::BluetoothHfpHfProxy
/foundation/communication/bluetooth_service/services/bluetooth/ipc/src/
H A Dbluetooth_hfp_ag_stub.cpp216 bool result = ConnectSco(); in ConnectScoInner()
385 bool result = ConnectSco(); in ConnectScoInnerEx()
/foundation/communication/bluetooth_service/services/bluetooth/service/src/hfp_ag/
H A Dhfp_ag_service.h181 bool ConnectSco() override;
/foundation/communication/bluetooth_service/test/unittest/hfp/
H A Dhfp_hf_test.cpp105 * @tc.name: ConnectSco
114 EXPECT_EQ(profile_->ConnectSco(device), true); in HWTEST_F()
H A Dhfp_ag_test.cpp204 * @tc.name: ConnectSco
212 bool isOK = profile_->ConnectSco(); in HWTEST_F()

Completed in 20 milliseconds

12