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

  /external/clang/test/SemaCXX/
warn-thread-safety-analysis.cpp 11 #define EXCLUSIVE_LOCK_FUNCTION(...) __attribute__ ((exclusive_lock_function(__VA_ARGS__)))
31 void Lock() __attribute__((exclusive_lock_function));
36 void LockWhen(const int &cond) __attribute__((exclusive_lock_function));
41 MutexLock(Mutex *mu) __attribute__((exclusive_lock_function(mu)));
47 ReaderMutexLock(Mutex *mu) __attribute__((exclusive_lock_function(mu)));
64 void MyLock() __attribute__((exclusive_lock_function(mu)));
281 void globalLock() __attribute__((exclusive_lock_function(aa_mu)));
1069 void MyLock() EXCLUSIVE_LOCK_FUNCTION(mu);
1199 bool MyLock() EXCLUSIVE_LOCK_FUNCTION(mu1_)
    [all...]
warn-thread-safety-parsing.cpp 11 #define EXCLUSIVE_LOCK_FUNCTION(...) __attribute__ ((exclusive_lock_function(__VA_ARGS__)))
68 void needLock() __attribute__((exclusive_lock_function(foomu)));
72 void needLock() __attribute__((exclusive_lock_function(foomu)));
554 #if !__has_attribute(exclusive_lock_function)
555 #error "Should support exclusive_lock_function attribute"
560 void elf_function() __attribute__((exclusive_lock_function));
562 void elf_function_args() __attribute__((exclusive_lock_function(mu1, mu2)));
564 int elf_testfn(int y) __attribute__((exclusive_lock_function));
567 int x __attribute__((exclusive_lock_function)) = y; //
    [all...]

Completed in 48 milliseconds