Home
last modified time | relevance | path

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

/ohos5.0/foundation/communication/bluetooth/interfaces/inner_api/include/
H A Dbluetooth_remote_device.h84 int GetMessagePermission() const;
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/include/
H A Dinterface_adapter_manager.h277 virtual BTPermissionType GetMessagePermission(const std::string &address) const = 0;
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/src/common/
H A Dadapter_manager.h219 BTPermissionType GetMessagePermission(const std::string &address) const override;
H A Dadapter_manager.cpp784 BTPermissionType AdapterManager::GetMessagePermission(const std::string &address) const in GetMessagePermission() function in OHOS::bluetooth::AdapterManager
/ohos5.0/foundation/communication/bluetooth_service/test/unittest/host/
H A Dhost_test.cpp436 EXPECT_EQ(device_.GetMessagePermission(), static_cast<int>(BTPermissionType::ACCESS_UNKNOWN));
452 EXPECT_EQ(device_.GetMessagePermission(), static_cast<int>(BTPermissionType::ACCESS_UNKNOWN));
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/src/
H A Dbluetooth_remote_device.cpp91 int BluetoothRemoteDevice::GetMessagePermission() const in GetMessagePermission() function in OHOS::Bluetooth::BluetoothRemoteDevice
97 return hostProxy->GetMessagePermission(address_); in GetMessagePermission()
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/ipc/include/
H A Dbluetooth_host_proxy.h71 int32_t GetMessagePermission(const std::string &address) override;
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/ipc/interface/
H A Di_bluetooth_host.h96 virtual int32_t GetMessagePermission(const std::string &address) = 0;
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/server/include/
H A Dbluetooth_host_server.h93 int32_t GetMessagePermission(const std::string &address) override;
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/server/src/
H A Dbluetooth_host_server.cpp1332 int32_t BluetoothHostServer::GetMessagePermission(const std::string &address) in GetMessagePermission() function in OHOS::Bluetooth::BluetoothHostServer
1335 return (int32_t)IAdapterManager::GetInstance()->GetMessagePermission(address); in GetMessagePermission()
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/ipc/src/
H A Dbluetooth_host_proxy.cpp819 int32_t BluetoothHostProxy::GetMessagePermission(const std::string &address) in GetMessagePermission() function in OHOS::Bluetooth::BluetoothHostProxy
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/ipc/src/
H A Dbluetooth_host_stub.cpp619 int result = GetMessagePermission(address); in GetMessagePermissionInner()