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

  /art/runtime/entrypoints/portable/
portable_lock_entrypoints.cc 32 UNLOCK_FUNCTION(monitor_lock_) {
portable_jni_entrypoints.cc 26 UNLOCK_FUNCTION(GlobalSynchronizatio::mutator_lock_) {
35 UNLOCK_FUNCTION(Locks::mutator_lock_) {
  /art/runtime/entrypoints/quick/
quick_lock_entrypoints.cc 24 UNLOCK_FUNCTION(monitor_lock_) {
  /external/chromium_org/third_party/leveldatabase/src/util/
mutexlock.h 29 ~MutexLock() UNLOCK_FUNCTION() { this->mu_->Unlock(); }
  /external/chromium_org/third_party/leveldatabase/src/port/
thread_annotations.h 51 #ifndef UNLOCK_FUNCTION
52 #define UNLOCK_FUNCTION(...)
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
thread_annotations.h 127 #define UNLOCK_FUNCTION(x) \
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
thread_annotations.h 127 #define UNLOCK_FUNCTION(x) \
  /external/clang/test/Sema/
warn-thread-safety-analysis.c 17 #define UNLOCK_FUNCTION(...) __attribute__ ((unlock_function(__VA_ARGS__)))
41 void mutex_unlock(struct Mutex *mu) UNLOCK_FUNCTION(mu) {
  /art/runtime/base/
macros.h 178 #define UNLOCK_FUNCTION(...) __attribute__ ((unlock(__VA_ARGS__)))
199 #define UNLOCK_FUNCTION(...)
mutex.h 155 void ExclusiveUnlock(Thread* self) UNLOCK_FUNCTION();
156 void Unlock(Thread* self) UNLOCK_FUNCTION() { ExclusiveUnlock(self); }
233 void ExclusiveUnlock(Thread* self) UNLOCK_FUNCTION();
234 void WriterUnlock(Thread* self) UNLOCK_FUNCTION() { ExclusiveUnlock(self); }
251 void SharedUnlock(Thread* self) UNLOCK_FUNCTION() ALWAYS_INLINE;
252 void ReaderUnlock(Thread* self) UNLOCK_FUNCTION() { SharedUnlock(self); }
360 ~MutexLock() UNLOCK_FUNCTION() {
381 ~ReaderMutexLock() UNLOCK_FUNCTION() {
403 ~WriterMutexLock() UNLOCK_FUNCTION() {
  /art/runtime/entrypoints/
entrypoint_utils.h 283 UNLOCK_FUNCTION(monitor_lock_) {
  /external/clang/test/PCH/
thread-safety-attrs.cpp 23 #define UNLOCK_FUNCTION(...) __attribute__ ((unlock_function(__VA_ARGS__)))
37 void Unlock() __attribute__((unlock_function));
46 ~MutexLock() __attribute__((unlock_function));
52 ~ReaderMutexLock() __attribute__((unlock_function));
58 ~ReleasableMutexLock() UNLOCK_FUNCTION();
60 void Release() UNLOCK_FUNCTION();
67 void endNoWarnOnReads() UNLOCK_FUNCTION("*");
69 void endNoWarnOnWrites() UNLOCK_FUNCTION("*");
  /external/clang/test/SemaCXX/
warn-thread-safety-parsing.cpp 17 #define UNLOCK_FUNCTION(...) __attribute__ ((unlock_function(__VA_ARGS__)))
31 void Unlock() UNLOCK_FUNCTION();
    [all...]
warn-thread-safety-analysis.cpp 20 #define UNLOCK_FUNCTION(...) __attribute__ ((unlock_function(__VA_ARGS__)))
34 void Unlock() __attribute__((unlock_function));
46 ~MutexLock() __attribute__((unlock_function));
52 ~ReaderMutexLock() __attribute__((unlock_function));
58 ~ReleasableMutexLock() UNLOCK_FUNCTION();
60 void Release() UNLOCK_FUNCTION();
67 void endNoWarnOnReads() UNLOCK_FUNCTION("*");
69 void endNoWarnOnWrites() UNLOCK_FUNCTION("*");
324 void globalUnlock() __attribute__((unlock_function(aa_mu)))
    [all...]
  /art/runtime/
check_jni.cc 172 ~ScopedCheck() UNLOCK_FUNCTION(Locks::mutator_lock_) {}
    [all...]
jni_internal.cc     [all...]

Completed in 734 milliseconds