Home
last modified time | relevance | path

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

/aosp12/system/chre/platform/freertos/include/chre/target_platform/
H A Datomic_base_impl.h24 inline AtomicBool::AtomicBool(bool startingValue) { in AtomicBool() function
28 inline bool AtomicBool::operator=(bool desired) {
33 inline bool AtomicBool::load() const { in load()
37 inline void AtomicBool::store(bool desired) { in store()
41 inline bool AtomicBool::exchange(bool desired) { in exchange()
/aosp12/system/chre/platform/linux/include/chre/target_platform/
H A Datomic_base_impl.h24 inline AtomicBool::AtomicBool(bool startingValue) { in AtomicBool() function
28 inline bool AtomicBool::operator=(bool desired) {
32 inline bool AtomicBool::load() const { in load()
36 inline void AtomicBool::store(bool desired) { in store()
40 inline bool AtomicBool::exchange(bool desired) { in exchange()
/aosp12/system/chre/platform/slpi/include/chre/target_platform/
H A Datomic_base_impl.h30 inline AtomicBool::AtomicBool(bool startingValue) { in AtomicBool() function
34 inline bool AtomicBool::operator=(bool desired) {
39 inline bool AtomicBool::load() const { in load()
44 inline void AtomicBool::store(bool desired) { in store()
48 inline bool AtomicBool::exchange(bool desired) { in exchange()
/aosp12/packages/modules/Virtualization/virtmanager/src/
H A Dcrosvm.rs25 use std::sync::atomic::{AtomicBool, Ordering};
46 running: AtomicBool,
66 running: AtomicBool::new(true), in new()
/aosp12/system/chre/platform/include/chre/platform/
H A Datomic.h29 class AtomicBool : public AtomicBoolBase, public NonCopyable {
36 AtomicBool(bool startingValue);
/aosp12/system/logging/rust/
H A Dlogger.rs20 use std::sync::atomic::{AtomicBool, Ordering};
22 static LOGGER_INITIALIZED: AtomicBool = AtomicBool::new(false);
/aosp12/system/chre/platform/slpi/see/include/chre/target_platform/
H A Dpower_control_manager_base.h56 AtomicBool mHostIsAwake;
/aosp12/system/security/keystore2/src/
H A Dremote_provisioning.rs41 use std::sync::atomic::{AtomicBool, Ordering};
56 is_hal_present: AtomicBool,
62 Self { security_level, km_uuid, is_hal_present: AtomicBool::new(true) } in new()
/aosp12/frameworks/native/libs/binder/rust/tests/
H A Dintegration.rs210 use std::sync::atomic::{AtomicBool, Ordering};
305 fn register_death_notification(binder: &mut SpIBinder) -> (Arc<AtomicBool>, DeathRecipient) { in register_death_notification() argument
306 let binder_died = Arc::new(AtomicBool::new(false)); in register_death_notification()
/aosp12/system/chre/core/include/chre/core/
H A Dhost_comms_manager.h184 AtomicBool mIsNanoappBlamedForWakeup;
H A Dsensor.h256 AtomicBool mFlushRequestPending;
H A Devent_loop.h356 AtomicBool mRunning;