Home
last modified time | relevance | path

Searched refs:PairRequestReply (Results 1 - 25 of 27) sorted by relevance

12

/foundation/communication/bluetooth_service/services/bluetooth/service/include/
H A Dinterface_adapter.h242 virtual bool PairRequestReply(const RawAddress &device, bool accept) const = 0;
/foundation/communication/dsoftbus/tests/adapter/bluetooth/
H A Dbluetooth_mock.cpp89 bool PairRequestReply(const BdAddr *bdAddr, int32_t transport, bool accept) in PairRequestReply() function
91 return MockBluetooth::GetMocker()->PairRequestReply(bdAddr, transport, accept); in PairRequestReply()
H A Dbluetooth_mock.h38 virtual bool PairRequestReply(const BdAddr *bdAddr, int transport, bool accept) = 0;
91 MOCK_METHOD(bool, PairRequestReply, (const BdAddr *bdAddr, int transport, bool accept), (override));
H A Dsoftbus_adapter_bt_common_test.cpp238 EXPECT_CALL(mocker, PairRequestReply(&bdAddr, OHOS_BT_TRANSPORT_LE, true)) in HWTEST()
/foundation/communication/bluetooth/interfaces/inner_api/include/
H A Dbluetooth_remote_device.h301 bool PairRequestReply(bool accept);
/foundation/communication/bluetooth_service/services/bluetooth/service/src/ble/
H A Dble_security.h53 bool PairRequestReply(const RawAddress &addr, int addrType, bool accept) const;
H A Dble_adapter.h114 bool PairRequestReply(const RawAddress &device, bool accept) const override;
H A Dble_adapter.cpp833 bool BleAdapter::PairRequestReply(const RawAddress &device, bool accept) const in PairRequestReply() function in OHOS::bluetooth::BleAdapter
839 return pimpl->bleSecurity_->PairRequestReply(device, addrType, accept); in PairRequestReply()
H A Dble_security.cpp674 bool BleSecurity::PairRequestReply(const RawAddress &addr, int addrType, bool accept) const in PairRequestReply() function in OHOS::bluetooth::BleSecurity
/foundation/communication/bluetooth/frameworks/js/napi/src/connection/
H A Dnapi_bluetooth_connection_observer.cpp71 remoteDevice.PairRequestReply(true); in OnPairRequested()
/foundation/communication/bluetooth/interfaces/inner_api/include/c_header/
H A Dohos_bt_gap.h168 bool PairRequestReply(const BdAddr *bdAddr, int transport, bool accept);
/foundation/communication/bluetooth/frameworks/inner/c_adapter/
H A Dohos_bt_gap.cpp443 bool PairRequestReply(const BdAddr *bdAddr, int transport, bool accept) in PairRequestReply() function
457 bool ret = remoteDevice.PairRequestReply(accept); in PairRequestReply()
/foundation/communication/dsoftbus/tests/adapter/broadcast/
H A Dbluetooth_mock.cpp108 bool PairRequestReply(const BdAddr *bdAddr, int32_t transport, bool accept) in PairRequestReply() function
110 return MockBluetooth::GetMocker()->PairRequestReply(bdAddr, transport, accept); in PairRequestReply()
H A Dbluetooth_mock.h38 virtual bool PairRequestReply(const BdAddr *bdAddr, int32_t transport, bool accept) = 0;
104 MOCK_METHOD(bool, PairRequestReply, (const BdAddr *bdAddr, int32_t transport, bool accept), (override));
/foundation/communication/dsoftbus/tests/core/discovery/ble/bluetooth_mock/
H A Dbluetooth_mock.h43 virtual bool PairRequestReply(const BdAddr *bdAddr, int32_t transport, bool accept) = 0;
87 MOCK_METHOD(bool, PairRequestReply, (const BdAddr *bdAddr, int32_t transport, bool accept), (override));
H A Dbluetooth_mock.cpp419 bool PairRequestReply(const BdAddr *bdAddr, int32_t transport, bool accept) in PairRequestReply() function
422 return BluetoothMock::GetMock()->PairRequestReply(bdAddr, transport, accept); in PairRequestReply()
/foundation/communication/bluetooth/frameworks/inner/src/
H A Dbluetooth_remote_device.cpp308 bool BluetoothRemoteDevice::PairRequestReply(bool accept) in PairRequestReply() function in OHOS::Bluetooth::BluetoothRemoteDevice
314 return hostProxy->PairRequestReply(transport_, address_, accept); in PairRequestReply()
/foundation/communication/bluetooth_service/test/unittest/host/
H A Dhost_test.cpp775 EXPECT_FALSE(device_.PairRequestReply(true)); in HWTEST_F()
776 EXPECT_FALSE(device_.PairRequestReply(false)); in HWTEST_F()
/foundation/communication/dsoftbus/adapter/common/net/bluetooth/common/
H A Dsoftbus_adapter_bt_common.c170 if (!PairRequestReply(bdAddr, transport, true)) { in WrapperPairRequestedCallback()
171 COMM_LOGE(COMM_ADAPTER, "PairRequestReply error"); in WrapperPairRequestedCallback()
/foundation/communication/bluetooth/frameworks/inner/ipc/interface/
H A Di_bluetooth_host.h116 virtual bool PairRequestReply(int32_t transport, const std::string &address, bool accept) = 0;
/foundation/communication/bluetooth_service/services/bluetooth/server/include/
H A Dbluetooth_host_server.h110 bool PairRequestReply(int32_t transport, const std::string &address, bool accept) override;
/foundation/communication/bluetooth/frameworks/inner/ipc/include/
H A Dbluetooth_host_proxy.h91 bool PairRequestReply(int32_t transport, const std::string &address, bool accept) override;
/foundation/communication/bluetooth_service/services/bluetooth/service/src/classic/
H A Dclassic_adapter.h207 bool PairRequestReply(const RawAddress &device, bool accept) const override;
/foundation/communication/bluetooth_service/services/bluetooth/server/src/
H A Dbluetooth_host_server.cpp1616 bool BluetoothHostServer::PairRequestReply(int32_t transport, const std::string &address, bool accept) in PairRequestReply() function in OHOS::Bluetooth::BluetoothHostServer
1624 return classicService->PairRequestReply(addr, accept); in PairRequestReply()
1626 return bleService->PairRequestReply(addr, accept); in PairRequestReply()
/foundation/communication/bluetooth/frameworks/inner/ipc/src/
H A Dbluetooth_host_proxy.cpp1298 bool BluetoothHostProxy::PairRequestReply(int32_t transport, const std::string &address, bool accept) in PairRequestReply() function in OHOS::Bluetooth::BluetoothHostProxy
1302 HILOGE("BluetoothHostProxy::PairRequestReply WriteInterfaceToken error"); in PairRequestReply()
1306 HILOGE("BluetoothHostProxy::PairRequestReply transport error"); in PairRequestReply()
1310 HILOGE("BluetoothHostProxy::PairRequestReply address error"); in PairRequestReply()
1314 HILOGE("BluetoothHostProxy::PairRequestReply accept error"); in PairRequestReply()
1321 HILOGE("BluetoothHostProxy::PairRequestReply done fail, error: %{public}d", error); in PairRequestReply()

Completed in 24 milliseconds

12