Lines Matching defs:SHARED_LOCKS_REQUIRED
24 #define SHARED_LOCKS_REQUIRED(...) \
1175 void slr_function_arg() SHARED_LOCKS_REQUIRED(mu1);
1177 void slr_function_args() SHARED_LOCKS_REQUIRED(mu1, mu2);
1179 int slr_testfn(int y) SHARED_LOCKS_REQUIRED(mu1);
1182 int x SHARED_LOCKS_REQUIRED(mu1) = y; // \
1187 int slr_test_var SHARED_LOCKS_REQUIRED(mu1); // \
1190 void slr_fun_params1(MutexLock& scope SHARED_LOCKS_REQUIRED(mu1));
1191 void slr_fun_params2(int lvar SHARED_LOCKS_REQUIRED(mu1)); // \
1196 int test_field SHARED_LOCKS_REQUIRED(mu1); // \
1198 void test_method() SHARED_LOCKS_REQUIRED(mu1);
1201 class SHARED_LOCKS_REQUIRED(mu1) SlrTestClass { // \
1208 int slr_function_1() SHARED_LOCKS_REQUIRED(muWrapper.mu);
1209 int slr_function_2() SHARED_LOCKS_REQUIRED(muDoubleWrapper.muWrapper->mu);
1210 int slr_function_3() SHARED_LOCKS_REQUIRED(muWrapper.getMu());
1211 int slr_function_4() SHARED_LOCKS_REQUIRED(*muWrapper.getMuPointer());
1212 int slr_function_5() SHARED_LOCKS_REQUIRED(&mu1);
1213 int slr_function_6() SHARED_LOCKS_REQUIRED(muRef);
1214 int slr_function_7() SHARED_LOCKS_REQUIRED(muDoubleWrapper.getWrapper()->getMu());
1215 int slr_function_8() SHARED_LOCKS_REQUIRED(muPointer);
1219 int slr_function_bad_1() SHARED_LOCKS_REQUIRED(1); // \
1221 int slr_function_bad_2() SHARED_LOCKS_REQUIRED("mu"); // \
1223 int slr_function_bad_3() SHARED_LOCKS_REQUIRED(muDoublePointer); // \
1225 int slr_function_bad_4() SHARED_LOCKS_REQUIRED(umu); // \