Home
last modified time | relevance | path

Searched refs:GetPairState (Results 1 – 17 of 17) sorted by relevance

/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/include/
H A Dinterface_adapter.h208 virtual int GetPairState(const RawAddress &device) const = 0;
/ohos5.0/foundation/communication/bluetooth/interfaces/inner_api/include/
H A Dbluetooth_remote_device.h182 int GetPairState(int &pairState) const;
/ohos5.0/foundation/communication/bluetooth/frameworks/js/napi/src/connection/
H A Dnapi_bluetooth_connection.h75 napi_value GetPairState(napi_env env, napi_callback_info info);
H A Dnapi_bluetooth_connection.cpp77 DECLARE_NAPI_FUNCTION("getPairState", GetPairState), in DefineConnectionFunctions()
573 napi_value GetPairState(napi_env env, napi_callback_info info) in GetPairState() function
580 int32_t err = remoteDevice.GetPairState(state); in GetPairState()
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/src/
H A Dbluetooth_remote_device.cpp179 int BluetoothRemoteDevice::GetPairState(int &pairState) const in GetPairState() function in OHOS::Bluetooth::BluetoothRemoteDevice
185 return hostProxy->GetPairState(transport_, address_, pairState); in GetPairState()
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/src/ble/
H A Dble_adapter.h117 int GetPairState(const RawAddress &device) const override;
H A Dble_adapter.cpp905 int BleAdapter::GetPairState(const RawAddress &device) const in GetPairState() function in OHOS::bluetooth::BleAdapter
/ohos5.0/foundation/communication/nfc/services/src/tag/
H A Dbt_connection_manager.cpp545 g_device.GetPairState(pairState); in NextActionConnect()
662 g_device.GetPairState(pairState); in NextActionDisconnect()
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/ipc/include/
H A Dbluetooth_host_proxy.h78 … int32_t GetPairState(int32_t transport, const std::string &address, int32_t &pairState) override;
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/ipc/interface/
H A Di_bluetooth_host.h103 …virtual int32_t GetPairState(int32_t transport, const std::string &address, int32_t &pairState) = …
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/server/include/
H A Dbluetooth_host_server.h100 … int32_t GetPairState(int32_t transport, const std::string &address, int32_t &pairState) override;
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/src/classic/
H A Dclassic_adapter.h176 int GetPairState(const RawAddress &device) const override;
H A Dclassic_adapter.cpp1918 int ClassicAdapter::GetPairState(const RawAddress &device) const in GetPairState() function in OHOS::bluetooth::ClassicAdapter
/ohos5.0/foundation/communication/bluetooth_service/test/unittest/host/
H A Dhost_test.cpp576 device_.GetPairState(pairState);
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/server/src/
H A Dbluetooth_host_server.cpp1412 int32_t BluetoothHostServer::GetPairState(int32_t transport, const std::string &address, int32_t &p… in GetPairState() function in OHOS::Bluetooth::BluetoothHostServer
1419 pairState = classicService->GetPairState(addr); in GetPairState()
1421 pairState = bleService->GetPairState(addr); in GetPairState()
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/ipc/src/
H A Dbluetooth_host_proxy.cpp980 int32_t BluetoothHostProxy::GetPairState(int32_t transport, const std::string &address, int32_t &pa… in GetPairState() function in OHOS::Bluetooth::BluetoothHostProxy
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/ipc/src/
H A Dbluetooth_host_stub.cpp825 int result = GetPairState(transport, address, pairState); in GetPairStateInner()