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

  /device/google/cuttlefish_common/common/vsoc/shm/
lock.h 128 std::atomic<uint32_t> lock_uint32_; member in class:vsoc::layout::WaitingLockBase
  /device/google/cuttlefish_common/common/vsoc/lib/
lock_common.cpp 64 if (lock_uint32_.compare_exchange_strong(expected, masked_tid)) {
77 if (lock_uint32_.compare_exchange_strong(expected, add_wait_flag)) {
103 uint32_t expected_state = lock_uint32_;
116 if (lock_uint32_.compare_exchange_strong(expected_state, LockFree)) {
139 return lock_uint32_.exchange(LockFree) != LockFree;
149 region->WaitForSignal(&lock_uint32_, expected);
154 region->SendSignal(UnlockCommon(gettid()), &lock_uint32_);
158 uint32_t expected_state = lock_uint32_;
176 region->SendSignal(UnlockCommon(expected_state), &lock_uint32_); local

Completed in 105 milliseconds