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

  /external/chromium_org/third_party/leveldatabase/src/port/
thread_annotations.h 43 #ifndef EXCLUSIVE_TRYLOCK_FUNCTION
44 #define EXCLUSIVE_TRYLOCK_FUNCTION(...)
  /external/clang/test/SemaCXX/
warn-thread-safety-parsing.cpp 15 #define EXCLUSIVE_TRYLOCK_FUNCTION(...) __attribute__ ((exclusive_trylock_function(__VA_ARGS__)))
33 bool TryLock() EXCLUSIVE_TRYLOCK_FUNCTION(true);
710 #if !__has_attribute(exclusive_trylock_function)
711 #error "Should support exclusive_trylock_function attribute"
717 void etf_function() __attribute__((exclusive_trylock_function)); // \
718 // expected-error {{'exclusive_trylock_function' attribute takes at least 1 argument}}
720 void etf_function_args() EXCLUSIVE_TRYLOCK_FUNCTION(1, mu2);
722 void etf_function_arg() EXCLUSIVE_TRYLOCK_FUNCTION(1);
724 int etf_testfn(int y) EXCLUSIVE_TRYLOCK_FUNCTION(1)
    [all...]
warn-thread-safety-analysis.cpp 18 #define EXCLUSIVE_TRYLOCK_FUNCTION(...) __attribute__ ((exclusive_trylock_function(__VA_ARGS__)))
35 bool TryLock() __attribute__((exclusive_trylock_function(true)));
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
spinlock.h 84 inline bool TryLock() EXCLUSIVE_TRYLOCK_FUNCTION(true) {
thread_annotations.h 121 #define EXCLUSIVE_TRYLOCK_FUNCTION(x) \
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
spinlock.h 84 inline bool TryLock() EXCLUSIVE_TRYLOCK_FUNCTION(true) {
thread_annotations.h 121 #define EXCLUSIVE_TRYLOCK_FUNCTION(x) \
  /external/chromium_org/third_party/webrtc/system_wrappers/interface/
thread_annotations.h 86 #define EXCLUSIVE_TRYLOCK_FUNCTION(...) \
87 THREAD_ANNOTATION_ATTRIBUTE__(exclusive_trylock_function(__VA_ARGS__))
  /art/runtime/base/
macros.h 207 #define EXCLUSIVE_TRYLOCK_FUNCTION(...) THREAD_ANNOTATION_ATTRIBUTE__(exclusive_trylock_function(__VA_ARGS__))
213 #define EXCLUSIVE_TRYLOCK_FUNCTION(...) THREAD_ANNOTATION_ATTRIBUTE__(exclusive_trylock(__VA_ARGS__))
mutex.h 212 bool ExclusiveTryLock(Thread* self) EXCLUSIVE_TRYLOCK_FUNCTION(true);
213 bool TryLock(Thread* self) EXCLUSIVE_TRYLOCK_FUNCTION(true) { return ExclusiveTryLock(self); }
303 EXCLUSIVE_TRYLOCK_FUNCTION(true);
311 bool SharedTryLock(Thread* self) EXCLUSIVE_TRYLOCK_FUNCTION(true);
  /external/clang/test/Sema/
warn-thread-safety-analysis.c 15 #define EXCLUSIVE_TRYLOCK_FUNCTION(...) __attribute__ ((exclusive_trylock_function(__VA_ARGS__)))
  /external/clang/test/PCH/
thread-safety-attrs.cpp 21 #define EXCLUSIVE_TRYLOCK_FUNCTION(...) __attribute__ ((exclusive_trylock_function(__VA_ARGS__)))
38 bool TryLock() __attribute__((exclusive_trylock_function(true)));

Completed in 2249 milliseconds