Home
last modified time | relevance | path

Searched refs:AtomicBool (Results 1 – 5 of 5) sorted by relevance

/linux/rust/kernel/
H A Drevocable.rs15 sync::atomic::{AtomicBool, Ordering},
68 is_available: AtomicBool,
87 is_available: AtomicBool::new(true), in new()
/linux/rust/pin-init/examples/
H A Dmutex.rs13 sync::atomic::{AtomicBool, Ordering},
29 inner: AtomicBool,
52 inner: AtomicBool::new(false), in new()
/linux/rust/kernel/list/
H A Darc.rs13 use core::sync::atomic::{AtomicBool, Ordering};
472 inner: AtomicBool,
483 inner: AtomicBool::new(false), in new()
488 fn project_inner(self: Pin<&mut Self>) -> &mut AtomicBool { in project_inner() argument
/linux/drivers/android/binder/
H A Dtransaction.rs5 use core::sync::atomic::{AtomicBool, Ordering};
36 is_outstanding: AtomicBool,
108 is_outstanding: AtomicBool::new(false), in new()
148 is_outstanding: AtomicBool::new(false), in new_reply()
H A Drust_binder_main.rs33 sync::atomic::{AtomicBool, AtomicUsize, Ordering},
218 skip: AtomicBool,
229 skip: AtomicBool::new(false), in new()