Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/system/gd/rust/linux/stack/src/
Dbluetooth_qa.rs55 pub struct BluetoothQA { struct
60 impl BluetoothQA { implementation
61 pub fn new(tx: Sender<Message>) -> BluetoothQA { in new() argument
62 BluetoothQA { in new()
104 impl IBluetoothQA for BluetoothQA { implementation
Dlib.rs23 use bluetooth_qa::{BluetoothQA, IBluetoothQA};
224 bluetooth_qa: Arc<Mutex<Box<BluetoothQA>>>, in dispatch() argument
/packages/modules/Bluetooth/system/gd/rust/linux/service/src/
Dinterface_manager.rs13 bluetooth_qa::BluetoothQA, socket_manager::BluetoothSocketManager, suspend::Suspend,
66 bluetooth_qa: Arc<Mutex<Box<BluetoothQA>>>, in dispatch() argument
Dmain.rs26 bluetooth_qa::BluetoothQA,
180 let bluetooth_qa = Arc::new(Mutex::new(Box::new(BluetoothQA::new(tx.clone())))); in main()