HomeSort by relevance Sort by last modified time
    Searched refs:Unlocked (Results 1 - 2 of 2) sorted by null

  /bionic/libc/private/
bionic_lock.h 37 Unlocked = 0,
50 atomic_init(&state, Unlocked);
55 LockState old_state = Unlocked;
60 while (atomic_exchange_explicit(&state, LockedWithWaiter, memory_order_acquire) != Unlocked) {
68 if (atomic_exchange_explicit(&state, Unlocked, memory_order_release) == LockedWithWaiter) {
  /external/clang/lib/StaticAnalyzer/Checkers/
PthreadLockChecker.cpp 29 enum Kind { Destroyed, Locked, Unlocked } K;
36 static LockState getUnlocked(void) { return LockState(Unlocked); }
44 bool isUnlocked() const { return K == Unlocked; }
212 "This lock has already been unlocked",

Completed in 55 milliseconds