Lines Matching refs:SHARED_LOCKS_REQUIRED
22 #define SHARED_LOCKS_REQUIRED(...) \
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; // \
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 { // \
1173 int slr_function_1() SHARED_LOCKS_REQUIRED(muWrapper.mu);
1174 int slr_function_2() SHARED_LOCKS_REQUIRED(muDoubleWrapper.muWrapper->mu);
1175 int slr_function_3() SHARED_LOCKS_REQUIRED(muWrapper.getMu());
1176 int slr_function_4() SHARED_LOCKS_REQUIRED(*muWrapper.getMuPointer());
1177 int slr_function_5() SHARED_LOCKS_REQUIRED(&mu1);
1178 int slr_function_6() SHARED_LOCKS_REQUIRED(muRef);
1179 int slr_function_7() SHARED_LOCKS_REQUIRED(muDoubleWrapper.getWrapper()->getMu());
1180 int slr_function_8() SHARED_LOCKS_REQUIRED(muPointer);
1184 int slr_function_bad_1() SHARED_LOCKS_REQUIRED(1); // \
1186 int slr_function_bad_2() SHARED_LOCKS_REQUIRED("mu"); // \
1188 int slr_function_bad_3() SHARED_LOCKS_REQUIRED(muDoublePointer); // \
1190 int slr_function_bad_4() SHARED_LOCKS_REQUIRED(umu); // \