Home
last modified time | relevance | path

Searched refs:AcceptIncomingCall (Results 1 – 12 of 12) sorted by relevance

/ohos5.0/foundation/communication/bluetooth/frameworks/inner/ipc/interface/
H A Di_bluetooth_hfp_hf.h41 virtual bool AcceptIncomingCall(const BluetoothRawAddress &device, int flag) = 0;
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/server/include/
H A Dbluetooth_hfp_hf_server.h43 bool AcceptIncomingCall(const BluetoothRawAddress &device, int flag) override;
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/ipc/include/
H A Dbluetooth_hfp_hf_proxy.h39 bool AcceptIncomingCall(const BluetoothRawAddress &device, int flag) override;
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/src/
H A Dbluetooth_hfp_hf.cpp301 bool AcceptIncomingCall(const BluetoothRemoteDevice &device, int flag) in AcceptIncomingCall() function
306 … return proxy->AcceptIncomingCall(BluetoothRawAddress(device.GetDeviceAddr()), (int32_t)flag); in AcceptIncomingCall()
633 bool HandsFreeUnit::AcceptIncomingCall(const BluetoothRemoteDevice &device, int flag) in AcceptIncomingCall() function in OHOS::Bluetooth::HandsFreeUnit
642 return pimpl->AcceptIncomingCall(device, flag); in AcceptIncomingCall()
/ohos5.0/foundation/communication/bluetooth/interfaces/inner_api/include/
H A Dbluetooth_hfp_hf.h289 bool AcceptIncomingCall(const BluetoothRemoteDevice &device, int flag);
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/include/
H A Dinterface_profile_hfp_hf.h273 virtual bool AcceptIncomingCall(const RawAddress &device, int flag) = 0;
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/src/hfp_hf/
H A Dhfp_hf_service.h223 bool AcceptIncomingCall(const RawAddress &device, int flag) override;
H A Dhfp_hf_service.cpp402 bool HfpHfService::AcceptIncomingCall(const RawAddress &device, int flag) in AcceptIncomingCall() function in OHOS::bluetooth::HfpHfService
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/server/src/
H A Dbluetooth_hfp_hf_server.cpp317 bool BluetoothHfpHfServer::AcceptIncomingCall(const BluetoothRawAddress &device, int flag) { in AcceptIncomingCall() function in OHOS::Bluetooth::BluetoothHfpHfServer
321 return pimpl->HfpHfService_->AcceptIncomingCall(addr, (int)flag); in AcceptIncomingCall()
/ohos5.0/foundation/communication/bluetooth_service/test/unittest/hfp/
H A Dhfp_hf_test.cpp293 EXPECT_EQ(profile_->AcceptIncomingCall(device, 0), true);
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/ipc/src/
H A Dbluetooth_hfp_hf_proxy.cpp224 bool BluetoothHfpHfProxy::AcceptIncomingCall(const BluetoothRawAddress &device, int flag) in AcceptIncomingCall() function in OHOS::Bluetooth::BluetoothHfpHfProxy
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/ipc/src/
H A Dbluetooth_hfp_hf_stub.cpp289 int result = AcceptIncomingCall(*device, flag); in AcceptIncomingCallInner()