Home
last modified time | relevance | path

Searched refs:SendDTMFTone (Results 1 – 13 of 13) sorted by relevance

/ohos5.0/foundation/communication/bluetooth/frameworks/inner/ipc/interface/
H A Di_bluetooth_hfp_hf.h35 virtual bool SendDTMFTone(const BluetoothRawAddress &device, uint8_t code) = 0;
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/server/include/
H A Dbluetooth_hfp_hf_server.h37 bool SendDTMFTone(const BluetoothRawAddress &device, uint8_t code) override;
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/ipc/include/
H A Dbluetooth_hfp_hf_proxy.h33 bool SendDTMFTone(const BluetoothRawAddress &device, uint8_t code) override;
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/src/
H A Dbluetooth_hfp_hf.cpp222 bool SendDTMFTone(const BluetoothRemoteDevice &device, uint8_t code) in SendDTMFTone() function
227 return proxy->SendDTMFTone(BluetoothRawAddress(device.GetDeviceAddr()), code); in SendDTMFTone()
556 bool HandsFreeUnit::SendDTMFTone(const BluetoothRemoteDevice &device, uint8_t code) in SendDTMFTone() function in OHOS::Bluetooth::HandsFreeUnit
565 return pimpl->SendDTMFTone(device, code); in SendDTMFTone()
/ohos5.0/foundation/communication/bluetooth/interfaces/inner_api/include/
H A Dbluetooth_hfp_hf.h234 bool SendDTMFTone(const BluetoothRemoteDevice &device, uint8_t code);
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/include/
H A Dinterface_profile_hfp_hf.h236 virtual bool SendDTMFTone(const RawAddress &device, uint8_t code) = 0;
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/src/hfp_hf/
H A Dhfp_hf_service.h204 bool SendDTMFTone(const RawAddress &device, uint8_t code) override;
H A Dhfp_hf_service.cpp361 bool HfpHfService::SendDTMFTone(const RawAddress &device, uint8_t code) in SendDTMFTone() function in OHOS::bluetooth::HfpHfService
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/server/src/
H A Dbluetooth_hfp_hf_server.cpp258 bool BluetoothHfpHfServer::SendDTMFTone(const BluetoothRawAddress &device, uint8_t code) { in SendDTMFTone() function in OHOS::Bluetooth::BluetoothHfpHfServer
262 return pimpl->HfpHfService_->SendDTMFTone(addr, code); in SendDTMFTone()
/ohos5.0/foundation/communication/bluetooth_service/test/unittest/hfp/
H A Dhfp_hf_test.cpp195 EXPECT_EQ(profile_->SendDTMFTone(device, 0), true);
/ohos5.0/foundation/communication/bluetooth/frameworks/js/napi/src/hfp/
H A Dnapi_bluetooth_hfp_hf.cpp322 bool isOK = profile->SendDTMFTone(device, code); in SendDTMF()
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/ipc/src/
H A Dbluetooth_hfp_hf_proxy.cpp117 bool BluetoothHfpHfProxy::SendDTMFTone(const BluetoothRawAddress &device, uint8_t code) in SendDTMFTone() function in OHOS::Bluetooth::BluetoothHfpHfProxy
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/ipc/src/
H A Dbluetooth_hfp_hf_stub.cpp202 int result = SendDTMFTone(*device, code); in SendDTMFToneInner()