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

  /art/runtime/entrypoints/portable/
portable_lock_entrypoints.cc 23 EXCLUSIVE_LOCK_FUNCTION(monitor_lock_) {
  /art/runtime/entrypoints/quick/
quick_lock_entrypoints.cc 33 EXCLUSIVE_LOCK_FUNCTION(monitor_lock_) {
  /external/chromium_org/third_party/leveldatabase/src/util/
mutexlock.h 25 explicit MutexLock(port::Mutex *mu) EXCLUSIVE_LOCK_FUNCTION(mu)
  /external/chromium_org/third_party/leveldatabase/src/port/
thread_annotations.h 35 #ifndef EXCLUSIVE_LOCK_FUNCTION
36 #define EXCLUSIVE_LOCK_FUNCTION(...)
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
spinlock.h 72 inline void Lock() /*EXCLUSIVE_LOCK_FUNCTION()*/ {
139 inline explicit SpinLockHolder(SpinLock* l) EXCLUSIVE_LOCK_FUNCTION(l)
thread_annotations.h 115 #define EXCLUSIVE_LOCK_FUNCTION(x) \
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
spinlock.h 72 inline void Lock() /*EXCLUSIVE_LOCK_FUNCTION()*/ {
139 inline explicit SpinLockHolder(SpinLock* l) EXCLUSIVE_LOCK_FUNCTION(l)
thread_annotations.h 115 #define EXCLUSIVE_LOCK_FUNCTION(x) \
  /external/clang/test/Sema/
warn-thread-safety-analysis.c 11 #define EXCLUSIVE_LOCK_FUNCTION(...) __attribute__ ((exclusive_lock_function(__VA_ARGS__)))
35 void mutex_exclusive_lock(struct Mutex *mu) EXCLUSIVE_LOCK_FUNCTION(mu) {
  /art/runtime/base/
macros.h 163 #define EXCLUSIVE_LOCK_FUNCTION(...) __attribute__ ((exclusive_lock(__VA_ARGS__)))
184 #define EXCLUSIVE_LOCK_FUNCTION(...)
mutex.h 147 void ExclusiveLock(Thread* self) EXCLUSIVE_LOCK_FUNCTION();
148 void Lock(Thread* self) EXCLUSIVE_LOCK_FUNCTION() { ExclusiveLock(self); }
229 void ExclusiveLock(Thread* self) EXCLUSIVE_LOCK_FUNCTION();
230 void WriterLock(Thread* self) EXCLUSIVE_LOCK_FUNCTION() { ExclusiveLock(self); }
356 explicit MutexLock(Thread* self, Mutex& mu) EXCLUSIVE_LOCK_FUNCTION(mu) : self_(self), mu_(mu) {
376 explicit ReaderMutexLock(Thread* self, ReaderWriterMutex& mu) EXCLUSIVE_LOCK_FUNCTION(mu) :
398 explicit WriterMutexLock(Thread* self, ReaderWriterMutex& mu) EXCLUSIVE_LOCK_FUNCTION(mu) :
  /external/clang/test/PCH/
thread-safety-attrs.cpp 19 #define EXCLUSIVE_LOCK_FUNCTION(...) __attribute__ ((exclusive_lock_function(__VA_ARGS__)))
35 void Lock() __attribute__((exclusive_lock_function));
40 void LockWhen(const int &cond) __attribute__((exclusive_lock_function));
45 MutexLock(Mutex *mu) __attribute__((exclusive_lock_function(mu)));
51 ReaderMutexLock(Mutex *mu) __attribute__((exclusive_lock_function(mu)));
57 ReleasableMutexLock(Mutex *mu) EXCLUSIVE_LOCK_FUNCTION(mu);
68 void beginNoWarnOnWrites() EXCLUSIVE_LOCK_FUNCTION("*");
110 void MyLock() __attribute__((exclusive_lock_function(mu)));
  /external/clang/test/SemaCXX/
warn-thread-safety-parsing.cpp 11 #define EXCLUSIVE_LOCK_FUNCTION(...) __attribute__ ((exclusive_lock_function(__VA_ARGS__)))
29 void Lock() EXCLUSIVE_LOCK_FUNCTION();
78 void needLock() EXCLUSIVE_LOCK_FUNCTION(foomu);
82 void needLock() EXCLUSIVE_LOCK_FUNCTION(foomu);
564 #if !__has_attribute(exclusive_lock_function)
565 #error "Should support exclusive_lock_function attribute"
570 void elf_function() EXCLUSIVE_LOCK_FUNCTION();
572 void elf_function_args() EXCLUSIVE_LOCK_FUNCTION(mu1, mu2);
574 int elf_testfn(int y) EXCLUSIVE_LOCK_FUNCTION();
    [all...]
warn-thread-safety-analysis.cpp 14 #define EXCLUSIVE_LOCK_FUNCTION(...) __attribute__ ((exclusive_lock_function(__VA_ARGS__)))
32 void Lock() __attribute__((exclusive_lock_function));
37 void LockWhen(const int &cond) __attribute__((exclusive_lock_function));
45 MutexLock(Mutex *mu) __attribute__((exclusive_lock_function(mu)));
51 ReaderMutexLock(Mutex *mu) __attribute__((exclusive_lock_function(mu)));
57 ReleasableMutexLock(Mutex *mu) EXCLUSIVE_LOCK_FUNCTION(mu);
68 void beginNoWarnOnWrites() EXCLUSIVE_LOCK_FUNCTION("*");
110 void MyLock() __attribute__((exclusive_lock_function(mu)));
323 void globalLock() __attribute__((exclusive_lock_function(aa_mu)))
    [all...]
  /art/runtime/
jni_internal.cc     [all...]

Completed in 231 milliseconds