Home
last modified time | relevance | path

Searched refs:GetPowerMode (Results 1 – 16 of 16) sorted by relevance

/foundation/communication/bluetooth/services/bluetooth_standard/service/src/common/
Dpower_manager.h114 virtual BTPowerMode GetPowerMode(const RawAddress &addr) const = 0;
198 BTPowerMode GetPowerMode(const RawAddress &addr) const override;
Dpower_device.h90 BTPowerMode GetPowerMode() const;
Dadapter_manager.h223 int GetPowerMode(const std::string &address) const override;
Dpower_manager.cpp150 BTPowerMode PowerManager::GetPowerMode(const RawAddress &addr) const in GetPowerMode() function in bluetooth::PowerManager
155 return iter->second->GetPowerMode(); in GetPowerMode()
Dadapter_manager.cpp749 int AdapterManager::GetPowerMode(const std::string &address) const in GetPowerMode() function in bluetooth::AdapterManager
755 return static_cast<int>(IPowerManager::GetInstance().GetPowerMode(addr)); in GetPowerMode()
Dpower_device.cpp121 BTPowerMode PowerDevice::GetPowerMode() const in GetPowerMode() function in bluetooth::PowerDevice
/foundation/communication/bluetooth/interfaces/innerkits/native_cpp/include/
Dbluetooth_remote_device.h109 int GetPowerMode(void) const;
/foundation/communication/bluetooth/services/bluetooth_standard/service/include/
Dinterface_adapter_manager.h298 virtual int GetPowerMode(const std::string &address) const = 0;
/foundation/communication/bluetooth/interfaces/innerkits/native_cpp/framework/src/
Dbluetooth_remote_device.cpp141 int BluetoothRemoteDevice::GetPowerMode(void) const in GetPowerMode() function in OHOS::Bluetooth::BluetoothRemoteDevice
153 return hostProxy->GetPowerMode(address_); in GetPowerMode()
/foundation/communication/bluetooth/services/bluetooth_standard/ipc/include/
Dbluetooth_host_proxy.h71 int32_t GetPowerMode(const std::string &address) override;
Di_bluetooth_host.h156 virtual int32_t GetPowerMode(const std::string &address) = 0;
/foundation/communication/bluetooth/services/bluetooth_standard/server/include/
Dbluetooth_host_server.h92 int32_t GetPowerMode(const std::string &address) override;
/foundation/communication/bluetooth/interfaces/innerkits/native_cpp/framework/test/unittest/host/
Dhost_test.cpp644 EXPECT_GE(device_.GetPowerMode(), 0);
/foundation/communication/bluetooth/services/bluetooth_standard/server/src/
Dbluetooth_host_server.cpp1020 int32_t BluetoothHostServer::GetPowerMode(const std::string &address) in GetPowerMode() function in OHOS::Bluetooth::BluetoothHostServer
1023 return IAdapterManager::GetInstance()->GetPowerMode(address); in GetPowerMode()
/foundation/communication/bluetooth/services/bluetooth_standard/ipc/src/
Dbluetooth_host_proxy.cpp845 int32_t BluetoothHostProxy::GetPowerMode(const std::string &address) in GetPowerMode() function in OHOS::Bluetooth::BluetoothHostProxy
Dbluetooth_host_stub.cpp624 int result = GetPowerMode(address); in GetPowerModeInner()