Home
last modified time | relevance | path

Searched refs:RemoteRSSI (Results 1 – 3 of 3) sorted by relevance

/packages/modules/Bluetooth/system/gd/discovery/device/
Dbt_property.cc332 std::shared_ptr<RemoteRSSI> RemoteRSSI::Create(const int8_t& rssi) { in Create()
333 return std::make_shared<RemoteRSSI>(RemoteRSSI(rssi)); in Create()
Dbt_property.h208 class RemoteRSSI : public BtPropertySimple<int8_t> {
210 RemoteRSSI(const int8_t& rssi) : BtPropertySimple<int8_t>(BT_PROPERTY_REMOTE_RSSI, rssi) {} in RemoteRSSI() function
212 static std::shared_ptr<RemoteRSSI> Create(const int8_t& rssi);
Dbt_property_unittest.cc216 properties.push_back(RemoteRSSI::Create(kRemoteRssi)); in fill_property()