Home
last modified time | relevance | path

Searched refs:DeviceInformation (Results 1 – 4 of 4) sorted by relevance

/packages/modules/Bluetooth/floss/hcidoc/src/groups/
Dinformational.rs114 struct DeviceInformation { struct
122 impl DeviceInformation { implementation
124 DeviceInformation { in new()
169 impl fmt::Display for DeviceInformation { implementation
176 device_names = DeviceInformation::print_names(&self.names), in fmt()
482 devices: HashMap<Address, DeviceInformation>,
503 fn get_or_allocate_device(&mut self, address: &Address) -> &mut DeviceInformation { in get_or_allocate_device() argument
505 self.devices.insert(*address, DeviceInformation::new(*address)); in get_or_allocate_device()
949 fn sort_addresses(a: &DeviceInformation, b: &DeviceInformation) -> Ordering { in report() argument
965 let a_name = format!("{}", DeviceInformation::print_names(&a.names)); in report()
[all …]
/packages/modules/Bluetooth/system/gd/rust/linux/stack/src/
Ddis.rs24 pub struct DeviceInformation { struct
38 impl DeviceInformation { impl
Dlib.rs45 use crate::dis::{DeviceInformation, ServiceCallbacks};
223 bluetooth_dis: Arc<Mutex<Box<DeviceInformation>>>, in dispatch() argument
/packages/modules/Bluetooth/system/gd/rust/linux/service/src/
Dmain.rs27 dis::DeviceInformation,
183 Arc::new(Mutex::new(Box::new(DeviceInformation::new(bluetooth_gatt.clone(), tx.clone())))); in main()