/ohos5.0/foundation/communication/bluetooth/frameworks/inner/ipc/include/ |
H A D | bluetooth_hfp_ag_proxy.h | 35 int32_t DisconnectSco(uint8_t callType) override; 37 bool DisconnectSco() override;
|
H A D | bluetooth_hfp_hf_proxy.h | 29 bool DisconnectSco(const BluetoothRawAddress &device) override;
|
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/ipc/interface/ |
H A D | i_bluetooth_hfp_ag.h | 38 virtual int32_t DisconnectSco(uint8_t callType) = 0; 40 virtual bool DisconnectSco() = 0;
|
H A D | i_bluetooth_hfp_hf.h | 31 virtual bool DisconnectSco(const BluetoothRawAddress &device) = 0;
|
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/server/include/ |
H A D | bluetooth_hfp_ag_server.h | 39 bool DisconnectSco() override; 57 int32_t DisconnectSco(uint8_t callType) override;
|
H A D | bluetooth_hfp_hf_server.h | 33 bool DisconnectSco(const BluetoothRawAddress &device) override;
|
/ohos5.0/foundation/communication/bluetooth/interfaces/inner_api/include/ |
H A D | bluetooth_hfp_ag.h | 210 int32_t DisconnectSco(uint8_t callType); 226 bool DisconnectSco();
|
H A D | bluetooth_hfp_hf.h | 197 bool DisconnectSco(const BluetoothRemoteDevice &device);
|
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/src/ |
H A D | bluetooth_hfp_ag.cpp | 206 int32_t DisconnectSco(uint8_t callType) in DisconnectSco() function 210 return proxy->DisconnectSco(callType); in DisconnectSco() 221 bool DisconnectSco() in DisconnectSco() function 226 return proxy->DisconnectSco(); in DisconnectSco() 539 int32_t HandsFreeAudioGateway::DisconnectSco(uint8_t callType) in DisconnectSco() function in OHOS::Bluetooth::HandsFreeAudioGateway 548 return pimpl->DisconnectSco(callType); in DisconnectSco() 556 bool HandsFreeAudioGateway::DisconnectSco() in DisconnectSco() function in OHOS::Bluetooth::HandsFreeAudioGateway
|
H A D | bluetooth_hfp_hf.cpp | 171 bool DisconnectSco(const BluetoothRemoteDevice &device) in DisconnectSco() function 176 return proxy->DisconnectSco(BluetoothRawAddress(device.GetDeviceAddr())); in DisconnectSco() 504 bool HandsFreeUnit::DisconnectSco(const BluetoothRemoteDevice &device) in DisconnectSco() function in OHOS::Bluetooth::HandsFreeUnit 514 return pimpl->DisconnectSco(device); in DisconnectSco()
|
/ohos5.0/foundation/communication/bluetooth/frameworks/js/napi/src/hfp/ |
H A D | napi_bluetooth_hfp_hf.cpp | 47 DECLARE_NAPI_FUNCTION("disconnectSco", DisconnectSco), in DefineHandsFreeUnitJSClass() 262 napi_value NapiHandsFreeUnit::DisconnectSco(napi_env env, napi_callback_info info) in DisconnectSco() function in OHOS::Bluetooth::NapiHandsFreeUnit 286 bool isOK = profile->DisconnectSco(device); in DisconnectSco()
|
H A D | napi_bluetooth_hfp_ag.cpp | 54 DECLARE_NAPI_FUNCTION("disconnectSco", DisconnectSco), in DefineHandsFreeAudioGatewayJSClass() 243 napi_value NapiHandsFreeAudioGateway::DisconnectSco(napi_env env, napi_callback_info info) in DisconnectSco() function in OHOS::Bluetooth::NapiHandsFreeAudioGateway 269 isOK = profile->DisconnectSco(); in DisconnectSco()
|
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/server/src/ |
H A D | bluetooth_hfp_ag_server.cpp | 279 bool BluetoothHfpAgServer::DisconnectSco() in DisconnectSco() function in OHOS::Bluetooth::BluetoothHfpAgServer 283 return pimpl->HfpAgService_->DisconnectSco(); in DisconnectSco() 432 int BluetoothHfpAgServer::DisconnectSco(uint8_t callType) in DisconnectSco() function in OHOS::Bluetooth::BluetoothHfpAgServer
|
H A D | bluetooth_hfp_hf_server.cpp | 202 bool BluetoothHfpHfServer::DisconnectSco(const BluetoothRawAddress &device) { in DisconnectSco() function in OHOS::Bluetooth::BluetoothHfpHfServer 206 return pimpl->HfpHfService_->DisconnectSco(addr); in DisconnectSco()
|
/ohos5.0/foundation/communication/bluetooth/frameworks/js/napi/include/ |
H A D | napi_bluetooth_hfp_hf.h | 38 static napi_value DisconnectSco(napi_env env, napi_callback_info info);
|
H A D | napi_bluetooth_hfp_ag.h | 39 static napi_value DisconnectSco(napi_env env, napi_callback_info info);
|
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/include/ |
H A D | interface_profile_hfp_ag.h | 181 virtual bool DisconnectSco() = 0;
|
H A D | interface_profile_hfp_hf.h | 199 virtual bool DisconnectSco(const RawAddress &device) = 0;
|
/ohos5.0/foundation/multimedia/audio_framework/frameworks/native/bluetoothclient/ |
H A D | audio_bluetooth_manager.cpp | 479 int32_t ret = DisconnectSco(); in SetActiveHfpDevice() 524 ret = hfpInstance_->DisconnectSco(static_cast<uint8_t>(lastScoCategory)); in ConnectScoWithAudioScene() 537 int32_t AudioHfpManager::DisconnectSco() in DisconnectSco() function in OHOS::Bluetooth::AudioHfpManager 549 int32_t ret = hfpInstance_->DisconnectSco(static_cast<uint8_t>(currentScoCategory)); in DisconnectSco()
|
H A D | audio_bluetooth_manager.h | 119 static int32_t DisconnectSco();
|
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/ipc/src/ |
H A D | bluetooth_hfp_ag_stub.cpp | 226 bool result = DisconnectSco(); in DisconnectScoInner() 395 bool result = DisconnectSco(); in DisconnectScoInnerEx()
|
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/src/hfp_hf/ |
H A D | hfp_hf_service.h | 167 bool DisconnectSco(const RawAddress &device) override;
|
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/ipc/src/ |
H A D | bluetooth_hfp_ag_proxy.cpp | 168 int32_t BluetoothHfpAgProxy::DisconnectSco(uint8_t callType) in DisconnectSco() function in OHOS::Bluetooth::BluetoothHfpAgProxy 197 bool BluetoothHfpAgProxy::DisconnectSco() in DisconnectSco() function in OHOS::Bluetooth::BluetoothHfpAgProxy
|
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/src/hfp_ag/ |
H A D | hfp_ag_service.h | 189 bool DisconnectSco() override;
|
/ohos5.0/foundation/communication/bluetooth_service/test/unittest/hfp/ |
H A D | hfp_ag_test.cpp | 228 bool isOK = profile_->DisconnectSco();
|