Searched defs:AtomicBool (Results 1 – 10 of 10) sorted by relevance
37 typedef _Atomic(_Bool) AtomicBool; typedef
29 typedef _Atomic(_Bool) AtomicBool; typedef
79 fn parse_from_flag(b: bool) -> std::sync::atomic::AtomicBool { in parse_from_flag()
551 let a = unsafe { &*(self.value.get() as *const AtomicBool) }; in fetch_and() constant572 let a = unsafe { &*(self.value.get() as *const AtomicBool) }; in fetch_or() constant593 let a = unsafe { &*(self.value.get() as *const AtomicBool) }; in fetch_xor() constant
118 fn initialize_inner(mutex: &Mutex<()>, is_initialized: &AtomicBool, init: &mut dyn FnMut() -> bool)… in initialize_inner()
157 thread_run: Arc<AtomicBool>, in new()
1176 async fn async_trait(_: Flagger<'_>, flag: &AtomicBool); in async_trait()1183 async fn async_trait(_: Flagger<'_>, flag: &AtomicBool) { in async_trait()1188 async fn standalone(_: Flagger<'_>, flag: &AtomicBool) { in standalone()1194 async fn async_trait(self, flag: &AtomicBool); in async_trait()1199 async fn async_trait(self, flag: &AtomicBool) { in async_trait()
398 kill_signaled: &Arc<AtomicBool>, in run_vcpus()
162 class AtomicBool { class164 explicit AtomicBool(bool value = false) : flag_(value) {} in AtomicBool() function in rtc::__anonec2f23eb0111::AtomicBool
368 impl<'a> Arbitrary<'a> for AtomicBool { implementation