Home
last modified time | relevance | path

Searched refs:SHARED_LOCKS_REQUIRED (Results 1 – 9 of 9) sorted by relevance

/external/clang/test/SemaCXX/
Dwarn-thread-safety-parsing.cpp22 #define SHARED_LOCKS_REQUIRED(...) \ macro
1141 void slr_function_arg() SHARED_LOCKS_REQUIRED(mu1);
1143 void slr_function_args() SHARED_LOCKS_REQUIRED(mu1, mu2);
1145 int slr_testfn(int y) SHARED_LOCKS_REQUIRED(mu1);
1148 int x SHARED_LOCKS_REQUIRED(mu1) = y; // \ in slr_testfn() local
1153 int slr_test_var SHARED_LOCKS_REQUIRED(mu1); // \
1156 void slr_fun_params(int lvar SHARED_LOCKS_REQUIRED(mu1)); // \
1161 int test_field SHARED_LOCKS_REQUIRED(mu1); // \
1163 void test_method() SHARED_LOCKS_REQUIRED(mu1);
1166 class SHARED_LOCKS_REQUIRED(mu1) SlrTestClass { // \ in SHARED_LOCKS_REQUIRED() function
[all …]
Dwarn-thread-safety-verbose.cpp22 #define SHARED_LOCKS_REQUIRED(...) \ macro
49 void foo2() SHARED_LOCKS_REQUIRED(mu);
Dwarn-thread-safety-analysis.cpp26 #define SHARED_LOCKS_REQUIRED(...) __attribute__((shared_locks_required(__VA_ARGS__))) macro
56 ReaderMutexLock(Mutex *mu, bool adopt) SHARED_LOCKS_REQUIRED(mu);
935 int method1(int i) SHARED_LOCKS_REQUIRED(mu2) EXCLUSIVE_LOCKS_REQUIRED(mu1);
943 int foo(int i) EXCLUSIVE_LOCKS_REQUIRED(mu2) SHARED_LOCKS_REQUIRED(mu1);
1093 int method1(int i) SHARED_LOCKS_REQUIRED(mu1, mu, mu2);
1234 int foo() SHARED_LOCKS_REQUIRED(mu_) EXCLUSIVE_LOCKS_REQUIRED(mu2);
1500 int method1(int i) SHARED_LOCKS_REQUIRED(mu1, mu, mu2, mu3);
2596 int foo2() SHARED_LOCKS_REQUIRED(mu_);
2604 int Foo::foo2() SHARED_LOCKS_REQUIRED(mu_) { in foo2()
2623 void foo2() SHARED_LOCKS_REQUIRED(mutex_) { // expected-note {{mutex acquired here}} in foo2()
[all …]
Dwarn-thread-safety-negative.cpp25 #define SHARED_LOCKS_REQUIRED(...) \ macro
/external/clang/test/Sema/
Dwarn-thread-safety-analysis.c22 #define SHARED_LOCKS_REQUIRED(...) \ macro
51 int Foo_fun1(int i) SHARED_LOCKS_REQUIRED(mu2) EXCLUSIVE_LOCKS_REQUIRED(mu1) { in Foo_fun1()
55 int Foo_fun2(int i) EXCLUSIVE_LOCKS_REQUIRED(mu2) SHARED_LOCKS_REQUIRED(mu1) { in Foo_fun2()
71 int get_value(int *p) SHARED_LOCKS_REQUIRED(foo_.mu_){ in get_value()
/external/webrtc/webrtc/base/
Dthread_annotations.h62 #define SHARED_LOCKS_REQUIRED(...) \ macro
/external/webrtc/webrtc/modules/remote_bitrate_estimator/
Dremote_bitrate_estimator_single_stream.h53 SHARED_LOCKS_REQUIRED(crit_sect_.get());
/external/clang/test/PCH/
Dthread-safety-attrs.cpp28 #define SHARED_LOCKS_REQUIRED(...) \ macro
/external/clang/docs/
DThreadSafetyAnalysis.rst185 *Previously*: ``EXCLUSIVE_LOCKS_REQUIRED``, ``SHARED_LOCKS_REQUIRED``
900 #define SHARED_LOCKS_REQUIRED(...) \