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

  /external/webrtc/webrtc/base/
thread_annotations.h 89 #define SHARED_TRYLOCK_FUNCTION(...) \
90 THREAD_ANNOTATION_ATTRIBUTE__(shared_trylock_function(__VA_ARGS__))
  /external/clang/test/Sema/
warn-thread-safety-analysis.c 16 #define SHARED_TRYLOCK_FUNCTION(...) __attribute__ ((shared_trylock_function(__VA_ARGS__)))
  /external/libchrome/base/
thread_annotations.h 159 // EXCLUSIVE_TRYLOCK_FUNCTION() / SHARED_TRYLOCK_FUNCTION()
170 #define SHARED_TRYLOCK_FUNCTION(...) \
171 THREAD_ANNOTATION_ATTRIBUTE__(shared_trylock_function(__VA_ARGS__))
  /external/tensorflow/tensorflow/core/platform/default/
thread_annotations.h 137 #define SHARED_TRYLOCK_FUNCTION(...) \
138 THREAD_ANNOTATION_ATTRIBUTE__(shared_trylock_function(__VA_ARGS__))
  /external/clang/test/SemaCXX/
warn-thread-safety-negative.cpp 19 #define SHARED_TRYLOCK_FUNCTION(...) __attribute__ ((shared_trylock_function(__VA_ARGS__)))
36 bool ReaderTryLock() __attribute__((shared_trylock_function(true)));
warn-thread-safety-verbose.cpp 16 #define SHARED_TRYLOCK_FUNCTION(...) __attribute__ ((shared_trylock_function(__VA_ARGS__)))
33 bool ReaderTryLock() __attribute__((shared_trylock_function(true)));
warn-thread-safety-parsing.cpp 16 #define SHARED_TRYLOCK_FUNCTION(...) __attribute__ ((shared_trylock_function(__VA_ARGS__)))
34 bool ReaderTryLock() SHARED_TRYLOCK_FUNCTION(true);
783 #if !__has_attribute(shared_trylock_function)
784 #error "Should support shared_trylock_function attribute"
790 void stf_function() __attribute__((shared_trylock_function)); // \
791 // expected-error {{'shared_trylock_function' attribute takes at least 1 argument}}
793 void stf_function_args() SHARED_TRYLOCK_FUNCTION(1, mu2);
795 void stf_function_arg() SHARED_TRYLOCK_FUNCTION(1);
797 int stf_testfn(int y) SHARED_TRYLOCK_FUNCTION(1)
    [all...]
warn-thread-safety-analysis.cpp 19 #define SHARED_TRYLOCK_FUNCTION(...) __attribute__((shared_trylock_function(__VA_ARGS__)))
36 bool ReaderTryLock() __attribute__((shared_trylock_function(true)));
    [all...]
  /external/clang/test/PCH/
thread-safety-attrs.cpp 22 #define SHARED_TRYLOCK_FUNCTION(...) __attribute__ ((shared_trylock_function(__VA_ARGS__)))
39 bool ReaderTryLock() __attribute__((shared_trylock_function(true)));

Completed in 565 milliseconds