Home
last modified time | relevance | path

Searched refs:Uuids (Results 1 – 9 of 9) sorted by relevance

/packages/modules/Bluetooth/system/gd/discovery/device/
Dbt_property.cc304 std::shared_ptr<Uuids> Uuids::Create(const std::vector<bluetooth::Uuid>& uuids) { in Create()
305 return std::make_shared<Uuids>(Uuids(uuids)); in Create()
Dbt_property.h147 class Uuids : public BtPropertyVector<bluetooth::Uuid> {
149 Uuids(const std::vector<bluetooth::Uuid>& uuids) in Uuids() function
152 static std::shared_ptr<Uuids> Create(const std::vector<bluetooth::Uuid>& uuids);
Dbt_property_unittest.cc175 properties.push_back(Uuids::Create(kUuids)); in fill_property()
/packages/modules/Bluetooth/system/gd/rust/topshim/facade/src/
Dutils.rs15 BluetoothProperty::Uuids(uuids) => { in bluetooth_property_to_event_data()
/packages/modules/Bluetooth/system/gd/rust/topshim/src/
Dbtif.rs150 Uuids, enumerator
572 Uuids(Vec<Uuid>), enumerator
611 BluetoothProperty::Uuids(_) => BtPropertyType::Uuids, in get_type()
642 BluetoothProperty::Uuids(uulist) => uulist.len() * mem::size_of::<Uuid>(), in get_len()
688 BluetoothProperty::Uuids(uulist) => { in get_data_ptr()
800 BtPropertyType::Uuids => { in from()
802 BluetoothProperty::Uuids(ptr_to_vec(prop.val as *const Uuid, count)) in from()
/packages/modules/Bluetooth/floss/pandora/floss/
Dfloss_enums.py179 Uuids = 0x3 variable in BtPropertyType
/packages/modules/Bluetooth/system/gd/rust/linux/stack/src/
Dbluetooth.rs1221 props.push(BluetoothProperty::Uuids(result.service_uuids.clone())); in handle_delayed_actions()
1224 props.push(BluetoothProperty::Uuids( in handle_delayed_actions()
1953 BluetoothProperty::Uuids(uu) => uu.len() > 0, in remote_device_properties_changed()
2203 match self.properties.get(&BtPropertyType::Uuids) { in get_uuids()
2205 BluetoothProperty::Uuids(uuids) => uuids.clone(), in get_uuids()
2599 match self.get_remote_device_property(&device, &BtPropertyType::Uuids) { in get_remote_wake_allowed()
2600 Some(BluetoothProperty::Uuids(uuids)) => { in get_remote_wake_allowed()
2663 match self.get_remote_device_property(&device, &BtPropertyType::Uuids) { in get_remote_uuids()
2664 Some(BluetoothProperty::Uuids(uuids)) => uuids, in get_remote_uuids()
Dbluetooth_admin.rs176 BluetoothProperty::Uuids(uuids) => Some(uuids.clone()), in on_remote_device_properties_changed()
/packages/modules/Bluetooth/floss/pandora/server/
Dgatt.py279 if floss_enums.BtPropertyType.Uuids in props: