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

  /art/runtime/gc/
scoped_gc_critical_section.h 36 ACQUIRE(Roles::uninterruptible_);
  /external/google-benchmark/src/
mutex.h 39 #define ACQUIRE(...) \
86 void lock() ACQUIRE() { mut_.lock(); }
100 MutexLock(Mutex& m) ACQUIRE(m) : ml_(m.native_handle())
  /system/core/base/include/android-base/
thread_annotations.h 50 #define ACQUIRE(...) \
  /art/runtime/base/
mutex.h 222 // Block until mutex is free then acquire exclusive access.
223 void ExclusiveLock(Thread* self) ACQUIRE();
224 void Lock(Thread* self) ACQUIRE() { ExclusiveLock(self); }
311 // Block until ReaderWriterMutex is free then acquire exclusive access.
312 void ExclusiveLock(Thread* self) ACQUIRE();
313 void WriterLock(Thread* self) ACQUIRE() { ExclusiveLock(self); }
319 // Block until ReaderWriterMutex is free and acquire exclusive access. Returns true on success
326 // Block until ReaderWriterMutex is shared or free then acquire a share on the access.
330 // Try to acquire share of ReaderWriterMutex.
484 MutexLock(Thread* self, Mutex& mu) ACQUIRE(mu) : self_(self), mu_(mu)
    [all...]
macros.h 274 #define ACQUIRE(...) THREAD_ANNOTATION_ATTRIBUTE__(acquire_capability(__VA_ARGS__))
294 #define ACQUIRE(...)
  /art/runtime/lambda/
closure_test.cc 50 // This doesn't actually acquire any locks because we don't need multiple threads in this gtest.
52 explicit ScopedFakeLock(MutatorMutex& mu) ACQUIRE(mu)
130 // Acquire a fake lock since closure_builder needs it.
  /art/runtime/
thread.h 265 const char* StartAssertNoThreadSuspension(const char* cause) ACQUIRE(Roles::uninterruptible_) {
266 Roles::uninterruptible_.Acquire(); // No-op.
    [all...]
thread.cc     [all...]

Completed in 394 milliseconds