Searched refs:AtomicBool (Results 1 – 4 of 4) sorted by relevance
/tools/netsim/rust/daemon/src/wireless/ |
D | bluetooth.rs | 30 use std::sync::atomic::{AtomicBool, Ordering}; 61 low_energy_enabled: AtomicBool, 62 classic_enabled: AtomicBool, 66 enabled: &AtomicBool, in patch_state() argument 186 low_energy_enabled: AtomicBool::new(true), in new() 187 classic_enabled: AtomicBool::new(true), in new()
|
D | uwb.rs | 28 use std::sync::atomic::{AtomicBool, AtomicI32, Ordering}; 54 state: AtomicBool, 138 state: AtomicBool::new(true), in new()
|
/tools/netsim/rust/daemon/src/devices/ |
D | device.rs | 30 use std::sync::atomic::{AtomicBool, Ordering}; 46 pub visible: AtomicBool, 58 visible: AtomicBool::new(true), in new()
|
/tools/netsim/rust/daemon/src/wifi/ |
D | medium.rs | 24 use std::sync::atomic::{AtomicBool, AtomicU32, Ordering}; 63 pub enabled: Arc<AtomicBool>, 71 enabled: Arc::new(AtomicBool::new(true)), in new()
|