/foundation/communication/bluetooth/frameworks/inner/ipc/interface/ |
H A D | i_bluetooth_hfp_ag.h | 37 virtual int32_t ConnectSco(uint8_t callType) = 0; 39 virtual bool ConnectSco() = 0;
|
H A D | i_bluetooth_hfp_hf.h | 30 virtual bool ConnectSco(const BluetoothRawAddress &device) = 0;
|
/foundation/communication/bluetooth_service/services/bluetooth/server/include/ |
H A D | bluetooth_hfp_ag_server.h | 38 bool ConnectSco() override; 56 int32_t ConnectSco(uint8_t callType) override;
|
H A D | bluetooth_hfp_hf_server.h | 32 bool ConnectSco(const BluetoothRawAddress &device) override;
|
/foundation/communication/bluetooth/interfaces/inner_api/include/ |
H A D | bluetooth_hfp_ag.h | 201 int32_t ConnectSco(uint8_t callType); 218 bool ConnectSco();
|
H A D | bluetooth_hfp_hf.h | 188 bool ConnectSco(const BluetoothRemoteDevice &device);
|
/foundation/communication/bluetooth/frameworks/inner/ipc/include/ |
H A D | bluetooth_hfp_ag_proxy.h | 34 int32_t ConnectSco(uint8_t callType) override; 36 bool ConnectSco() override;
|
H A D | bluetooth_hfp_hf_proxy.h | 28 bool ConnectSco(const BluetoothRawAddress &device) override;
|
/foundation/communication/bluetooth/frameworks/js/napi/include/ |
H A D | napi_bluetooth_hfp_hf.h | 37 static napi_value ConnectSco(napi_env env, napi_callback_info info);
|
H A D | napi_bluetooth_hfp_ag.h | 38 static napi_value ConnectSco(napi_env env, napi_callback_info info);
|
/foundation/communication/bluetooth/frameworks/inner/src/ |
H A D | bluetooth_hfp_ag.cpp | 196 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 D | bluetooth_hfp_hf.cpp | 158 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 D | interface_profile_hfp_ag.h | 173 virtual bool ConnectSco() = 0;
|
H A D | interface_profile_hfp_hf.h | 190 virtual bool ConnectSco(const RawAddress &device) = 0;
|
/foundation/communication/bluetooth/frameworks/js/napi/src/hfp/ |
H A D | napi_bluetooth_hfp_ag.cpp | 49 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 D | napi_bluetooth_hfp_hf.cpp | 42 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 D | bluetooth_hfp_ag_server.cpp | 266 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 D | bluetooth_hfp_hf_server.cpp | 193 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 D | hfp_hf_service.h | 158 bool ConnectSco(const RawAddress &device) override;
|
/foundation/communication/bluetooth/frameworks/inner/ipc/src/ |
H A D | bluetooth_hfp_ag_proxy.cpp | 141 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 D | bluetooth_hfp_hf_proxy.cpp | 21 bool BluetoothHfpHfProxy::ConnectSco(const BluetoothRawAddress &device) in ConnectSco() function in OHOS::Bluetooth::BluetoothHfpHfProxy
|
/foundation/communication/bluetooth_service/services/bluetooth/ipc/src/ |
H A D | bluetooth_hfp_ag_stub.cpp | 216 bool result = ConnectSco(); in ConnectScoInner() 385 bool result = ConnectSco(); in ConnectScoInnerEx()
|
/foundation/communication/bluetooth_service/services/bluetooth/service/src/hfp_ag/ |
H A D | hfp_ag_service.h | 181 bool ConnectSco() override;
|
/foundation/communication/bluetooth_service/test/unittest/hfp/ |
H A D | hfp_hf_test.cpp | 105 * @tc.name: ConnectSco 114 EXPECT_EQ(profile_->ConnectSco(device), true); in HWTEST_F()
|
H A D | hfp_ag_test.cpp | 204 * @tc.name: ConnectSco 212 bool isOK = profile_->ConnectSco(); in HWTEST_F()
|