Searched refs:Uuids (Results 1 – 9 of 9) sorted by relevance
/packages/modules/Bluetooth/system/gd/discovery/device/ |
D | bt_property.cc | 304 std::shared_ptr<Uuids> Uuids::Create(const std::vector<bluetooth::Uuid>& uuids) { in Create() 305 return std::make_shared<Uuids>(Uuids(uuids)); in Create()
|
D | bt_property.h | 147 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);
|
D | bt_property_unittest.cc | 175 properties.push_back(Uuids::Create(kUuids)); in fill_property()
|
/packages/modules/Bluetooth/system/gd/rust/topshim/facade/src/ |
D | utils.rs | 15 BluetoothProperty::Uuids(uuids) => { in bluetooth_property_to_event_data()
|
/packages/modules/Bluetooth/system/gd/rust/topshim/src/ |
D | btif.rs | 150 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/ |
D | floss_enums.py | 179 Uuids = 0x3 variable in BtPropertyType
|
/packages/modules/Bluetooth/system/gd/rust/linux/stack/src/ |
D | bluetooth.rs | 1221 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()
|
D | bluetooth_admin.rs | 176 BluetoothProperty::Uuids(uuids) => Some(uuids.clone()), in on_remote_device_properties_changed()
|
/packages/modules/Bluetooth/floss/pandora/server/ |
D | gatt.py | 279 if floss_enums.BtPropertyType.Uuids in props:
|