Home
last modified time | relevance | path

Searched defs:LockState (Results 1 – 6 of 6) sorted by relevance

/external/clang/lib/StaticAnalyzer/Checkers/
DPthreadLockChecker.cpp28 struct LockState { struct
29 enum Kind { Destroyed, Locked, Unlocked } K;
32 LockState(Kind K) : K(K) {} in LockState() argument
35 static LockState getLocked() { return LockState(Locked); } in getLocked()
36 static LockState getUnlocked() { return LockState(Unlocked); } in getUnlocked()
37 static LockState getDestroyed() { return LockState(Destroyed); } in getDestroyed()
39 bool operator==(const LockState &X) const { in operator ==()
43 bool isLocked() const { return K == Locked; } in isLocked()
44 bool isUnlocked() const { return K == Unlocked; } in isUnlocked()
45 bool isDestroyed() const { return K == Destroyed; } in isDestroyed()
[all …]
/external/openscreen/platform/impl/
Dscoped_wake_lock_mac.h20 struct LockState { struct
28 static LockState lock_state_; argument
/external/libese/apps/boot/
Dboot_private.h25 } LockState; typedef
/external/rust/crates/parking_lot_core/src/
Dword_lock.rs300 trait LockState { interface
/external/kotlinx.atomicfu/atomicfu/src/nativeMain/kotlin/kotlinx/atomicfu/locks/
DSynchronized.kt142 protected class LockState( class
/external/libchrome/base/memory/
Ddiscardable_shared_memory.cc74 enum LockState { UNLOCKED = 0, LOCKED = 1 }; enum