Home
last modified time | relevance | path

Searched refs:BtPropertyType (Results 1 – 7 of 7) sorted by relevance

/packages/modules/Bluetooth/system/gd/rust/topshim/src/
Dbtif.rs147 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/
Dbluetooth.rs6 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/
Diface_bluetooth.rs2 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/
Dfloss_enums.py175 class BtPropertyType(enum.IntEnum): class
/packages/modules/Bluetooth/system/gd/rust/linux/client/src/
Dcallbacks.rs13 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
Ddbus_iface.rs4 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/
Dgatt.py279 if floss_enums.BtPropertyType.Uuids in props: