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

  /device/google/cuttlefish_common/common/libs/threads/
thread_annotations.h 48 #define ACQUIRE(...) \
  /external/tensorflow/tensorflow/core/platform/default/
thread_annotations.h 76 #define ACQUIRE(...) \
115 // Document functions that acquire a lock in the body of a function, and do
128 // Document functions that try to acquire a lock, and return success or failure
  /external/google-benchmark/src/
mutex.h 37 #define ACQUIRE(...) \
79 void lock() ACQUIRE() { mut_.lock(); }
91 MutexLock(Mutex& m) ACQUIRE(m) : ml_(m.native_handle()) {}
  /external/libcxx/utils/google-benchmark/src/
mutex.h 37 #define ACQUIRE(...) \
79 void lock() ACQUIRE() { mut_.lock(); }
91 MutexLock(Mutex& m) ACQUIRE(m) : ml_(m.native_handle()) {}
  /frameworks/native/libs/gui/include/gui/
FrameTimestamps.h 41 ACQUIRE,
143 uint64_t frameNumber, std::shared_ptr<FenceTime>&& acquire);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/src/
mutex.h 37 #define ACQUIRE(...) \
79 void lock() ACQUIRE() { mut_.lock(); }
91 MutexLock(Mutex& m) ACQUIRE(m) : ml_(m.native_handle()) {}
  /system/core/base/include/android-base/
thread_annotations.h 59 #define ACQUIRE(...) \
  /system/core/libutils/include/utils/
Mutex.h 55 #define ACQUIRE(...) THREAD_ANNOTATION_ATTRIBUTE__(acquire_capability(__VA_ARGS__))
107 status_t lock() ACQUIRE();
132 inline explicit Autolock(Mutex& mutex) ACQUIRE(mutex) : mLock(mutex) { mLock.lock(); }
133 inline explicit Autolock(Mutex* mutex) ACQUIRE(mutex) : mLock(*mutex) { mLock.lock(); }
  /art/openjdkjvmti/
deopt_manager.cc 273 ACQUIRE(art::Locks::mutator_lock_)
274 ACQUIRE(art::Roles::uninterruptible_)
  /art/runtime/base/
mutex.h 253 // Block until mutex is free then acquire exclusive access.
254 void ExclusiveLock(Thread* self) ACQUIRE();
255 void Lock(Thread* self) ACQUIRE() { ExclusiveLock(self); }
340 // Block until ReaderWriterMutex is free then acquire exclusive access.
341 void ExclusiveLock(Thread* self) ACQUIRE();
342 void WriterLock(Thread* self) ACQUIRE() { ExclusiveLock(self); }
348 // Block until ReaderWriterMutex is free and acquire exclusive access. Returns true on success
355 // Block until ReaderWriterMutex is shared or free then acquire a share on the access.
359 // Try to acquire share of ReaderWriterMutex.
512 MutexLock(Thread* self, Mutex& mu) ACQUIRE(mu) : self_(self), mu_(mu)
    [all...]
  /art/runtime/
thread.h 324 const char* StartAssertNoThreadSuspension(const char* cause) ACQUIRE(Roles::uninterruptible_) {
325 Roles::uninterruptible_.Acquire(); // No-op.
    [all...]
thread.cc     [all...]

Completed in 486 milliseconds