Lines Matching defs:SHARED_TRYLOCK_FUNCTION

18 #define SHARED_TRYLOCK_FUNCTION(...)    __attribute__ ((shared_trylock_function(__VA_ARGS__)))
36 bool ReaderTryLock() SHARED_TRYLOCK_FUNCTION(true);
814 void stf_function_args() SHARED_TRYLOCK_FUNCTION(1, mu2);
816 void stf_function_arg() SHARED_TRYLOCK_FUNCTION(1); // \
819 int stf_testfn(int y) SHARED_TRYLOCK_FUNCTION(1); // \
823 int x SHARED_TRYLOCK_FUNCTION(1) = y; // \
828 int stf_test_var SHARED_TRYLOCK_FUNCTION(1); // \
831 void stf_fun_params(int lvar SHARED_TRYLOCK_FUNCTION(1)); // \
837 int test_field SHARED_TRYLOCK_FUNCTION(1); // \
839 void test_method() SHARED_TRYLOCK_FUNCTION(1); // \
843 class SHARED_TRYLOCK_FUNCTION(1) StfTestClass { // \
850 int stf_function_1() SHARED_TRYLOCK_FUNCTION(1, muWrapper.mu);
851 int stf_function_2() SHARED_TRYLOCK_FUNCTION(1, muDoubleWrapper.muWrapper->mu);
852 int stf_function_3() SHARED_TRYLOCK_FUNCTION(1, muWrapper.getMu());
853 int stf_function_4() SHARED_TRYLOCK_FUNCTION(1, *muWrapper.getMuPointer());
854 int stf_function_5() SHARED_TRYLOCK_FUNCTION(1, &mu1);
855 int stf_function_6() SHARED_TRYLOCK_FUNCTION(1, muRef);
856 int stf_function_7() SHARED_TRYLOCK_FUNCTION(1, muDoubleWrapper.getWrapper()->getMu());
857 int stf_function_8() SHARED_TRYLOCK_FUNCTION(1, muPointer);
858 int stf_function_9() SHARED_TRYLOCK_FUNCTION(true); // \
863 int stf_function_bad_1() SHARED_TRYLOCK_FUNCTION(mu1); // \
865 int stf_function_bad_2() SHARED_TRYLOCK_FUNCTION("mu"); // \
867 int stf_function_bad_3() SHARED_TRYLOCK_FUNCTION(muDoublePointer); // \
870 int stf_function_bad_4() SHARED_TRYLOCK_FUNCTION(1, "mu"); // \
872 int stf_function_bad_5() SHARED_TRYLOCK_FUNCTION(1, muDoublePointer); // \
874 int stf_function_bad_6() SHARED_TRYLOCK_FUNCTION(1, umu); // \