Searched refs:BtPropertyType (Results 1 – 7 of 7) sorted by relevance
/packages/modules/Bluetooth/system/gd/rust/topshim/src/ |
D | btif.rs | 147 pub enum BtPropertyType { enum 177 impl From<u32> for BtPropertyType { implementation 179 BtPropertyType::from_u32(item).unwrap_or(BtPropertyType::Unknown) in from() 183 impl From<BtPropertyType> for u32 { 184 fn from(item: BtPropertyType) -> Self { in from() 607 pub fn get_type(&self) -> BtPropertyType { in get_type() argument 609 BluetoothProperty::BdName(_) => BtPropertyType::BdName, in get_type() 610 BluetoothProperty::BdAddr(_) => BtPropertyType::BdAddr, in get_type() 611 BluetoothProperty::Uuids(_) => BtPropertyType::Uuids, in get_type() 612 BluetoothProperty::ClassOfDevice(_) => BtPropertyType::ClassOfDevice, in get_type() [all …]
|
/packages/modules/Bluetooth/system/gd/rust/linux/stack/src/ |
D | bluetooth.rs | 6 BtDiscoveryState, BtHciErrorCode, BtPinCode, BtPropertyType, BtScanMode, BtSspVariant, BtState, 377 pub properties: HashMap<BtPropertyType, BluetoothProperty>, 438 self.properties.get(&BtPropertyType::TypeOfDevice).map_or(BtTransport::Auto, |prop| { in get_default_transport() 503 fn on_adapter_property_changed(&mut self, prop: BtPropertyType); in on_adapter_property_changed() argument 509 props: Vec<BtPropertyType>, in on_device_properties_changed() argument 611 properties: HashMap<BtPropertyType, BluetoothProperty>, 702 .get(&BtPropertyType::TypeOfDevice) in update_connectable_mode() 890 property_type: &BtPropertyType, in get_remote_device_property() argument 901 property_type: BtPropertyType, in set_remote_device_property() argument 916 self.properties.get(&BtPropertyType::AdapterScanMode).map_or(false, |prop| match prop { in get_connectable_internal() [all …]
|
/packages/modules/Bluetooth/system/gd/rust/linux/service/src/ |
D | iface_bluetooth.rs | 2 BtAddrType, BtBondState, BtConnectionState, BtDeviceType, BtDiscMode, BtPropertyType, 94 fn on_adapter_property_changed(&mut self, prop: BtPropertyType) { in on_adapter_property_changed() argument 101 props: Vec<BtPropertyType>, in on_device_properties_changed() argument 176 impl_dbus_arg_enum!(BtPropertyType);
|
/packages/modules/Bluetooth/floss/pandora/floss/ |
D | floss_enums.py | 175 class BtPropertyType(enum.IntEnum): class
|
/packages/modules/Bluetooth/system/gd/rust/linux/client/src/ |
D | callbacks.rs | 13 use bt_topshim::btif::{BtBondState, BtPropertyType, BtSspVariant, BtStatus, RawAddress, Uuid}; 135 fn on_adapter_property_changed(&mut self, _prop: BtPropertyType) {} in on_adapter_property_changed() argument 140 props: Vec<BtPropertyType>, in on_device_properties_changed() argument
|
D | dbus_iface.rs | 4 BtAddrType, BtBondState, BtConnectionState, BtDeviceType, BtDiscMode, BtPropertyType, 89 impl_dbus_arg_enum!(BtPropertyType); 603 fn on_adapter_property_changed(&mut self, prop: BtPropertyType) {} in on_adapter_property_changed() argument 609 props: Vec<BtPropertyType>, in on_device_properties_changed() argument
|
/packages/modules/Bluetooth/floss/pandora/server/ |
D | gatt.py | 279 if floss_enums.BtPropertyType.Uuids in props:
|