Home
last modified time | relevance | path

Searched refs:BluetoothAdmin (Results 1 – 6 of 6) sorted by relevance

/packages/modules/Bluetooth/system/gd/rust/linux/stack/src/
Dbluetooth_admin.rs61 pub struct BluetoothAdmin { struct
70 impl BluetoothAdmin { argument
71 pub fn new(path: String, tx: Sender<Message>) -> BluetoothAdmin { in new() argument
73 let mut admin = BluetoothAdmin { in new()
197 impl IBluetoothAdmin for BluetoothAdmin { implementation
275 use crate::bluetooth_admin::{BluetoothAdmin, IBluetoothAdmin};
288 let mut admin = BluetoothAdmin::new(String::from(""), tx.clone()); in test_set_service_allowed()
317 fn get_sorted_allowed_services_from_config(admin: &BluetoothAdmin) -> Vec<String> { in get_sorted_allowed_services_from_config()
331 fn get_sorted_allowed_services(admin: &BluetoothAdmin) -> Vec<Uuid> { in get_sorted_allowed_services()
340 let mut admin = BluetoothAdmin::new(String::from(""), tx.clone()); in test_config()
Dlib.rs38 use crate::bluetooth_admin::{BluetoothAdmin, IBluetoothAdmin};
222 bluetooth_admin: Arc<Mutex<Box<BluetoothAdmin>>>, in dispatch() argument
Dsocket_manager.rs24 use crate::bluetooth_admin::{BluetoothAdmin, IBluetoothAdmin};
520 admin: Arc<Mutex<Box<BluetoothAdmin>>>,
525 pub fn new(tx: Sender<Message>, admin: Arc<Mutex<Box<BluetoothAdmin>>>) -> Self { in new()
Dbluetooth.rs48 use crate::bluetooth_admin::{BluetoothAdmin, IBluetoothAdmin};
593 bluetooth_admin: Arc<Mutex<Box<BluetoothAdmin>>>,
642 bluetooth_admin: Arc<Mutex<Box<BluetoothAdmin>>>, in new() argument
/packages/modules/Bluetooth/system/gd/rust/linux/service/src/
Dinterface_manager.rs11 bluetooth_admin::BluetoothAdmin, bluetooth_gatt::BluetoothGatt,
60 bluetooth_admin: Arc<Mutex<Box<BluetoothAdmin>>>, in dispatch() argument
Dmain.rs22 bluetooth_admin::BluetoothAdmin,
154 let bluetooth_admin = Arc::new(Mutex::new(Box::new(BluetoothAdmin::new( in main()