Home
last modified time | relevance | path

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

/ohos5.0/foundation/communication/bluetooth/interfaces/inner_api/include/
H A Dbluetooth_remote_device.h270 int SetDevicePin(const std::string &pin);
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/include/
H A Dinterface_adapter_classic.h331 virtual bool SetDevicePin(const RawAddress &device, const std::string &pinCode) const = 0;
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/src/
H A Dbluetooth_remote_device.cpp283 int BluetoothRemoteDevice::SetDevicePin(const std::string &pin) in SetDevicePin() function in OHOS::Bluetooth::BluetoothRemoteDevice
289 return hostProxy->SetDevicePin(address_, pin); in SetDevicePin()
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/ipc/include/
H A Dbluetooth_host_proxy.h86 int32_t SetDevicePin(const std::string &address, const std::string &pin) override;
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/ipc/interface/
H A Di_bluetooth_host.h111 virtual int32_t SetDevicePin(const std::string &address, const std::string &pin) = 0;
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/server/include/
H A Dbluetooth_host_server.h107 int32_t SetDevicePin(const std::string &address, const std::string &pin) override;
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/src/classic/
H A Dclassic_adapter.h338 bool SetDevicePin(const RawAddress &device, const std::string &pinCode) const override;
H A Dclassic_adapter.cpp2211 bool ClassicAdapter::SetDevicePin(const RawAddress &device, const std::string &pinCode) const in SetDevicePin() function in OHOS::bluetooth::ClassicAdapter
/ohos5.0/foundation/communication/bluetooth_service/test/unittest/host/
H A Dhost_test.cpp718 EXPECT_FALSE(device_.SetDevicePin("000000") == NO_ERROR);
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/server/src/
H A Dbluetooth_host_server.cpp1569 int32_t BluetoothHostServer::SetDevicePin(const std::string &address, const std::string &pin) in SetDevicePin() function in OHOS::Bluetooth::BluetoothHostServer
1579 if (classicService->SetDevicePin(addr, pin)) { in SetDevicePin()
/ohos5.0/foundation/communication/bluetooth/frameworks/js/napi/src/connection/
H A Dnapi_bluetooth_connection.cpp405 int32_t err = remoteDevice.SetDevicePin(pinCode); in SetDevicePinCode()
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/ipc/src/
H A Dbluetooth_host_proxy.cpp1184 int32_t BluetoothHostProxy::SetDevicePin(const std::string &address, const std::string &pin) in SetDevicePin() function in OHOS::Bluetooth::BluetoothHostProxy
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/ipc/src/
H A Dbluetooth_host_stub.cpp960 int32_t result = SetDevicePin(address, pin); in SetDevicePinInner()