Lines Matching refs:a
29 pthread_attr_t a; in do_test() local
31 if (pthread_attr_init (&a) != 0) in do_test()
54 pthread_attr_setinheritsched (&a, PTHREAD_INHERIT_SCHED); in do_test()
55 pthread_attr_setschedpolicy (&a, SCHED_OTHER); in do_test()
56 pthread_attr_setscope (&a, PTHREAD_SCOPE_SYSTEM); in do_test()
64 int e = pthread_attr_setdetachstate (&a, r); in do_test()
78 if (pthread_attr_getdetachstate (&a, &s) != 0) in do_test()
94 int e = pthread_attr_setinheritsched (&a, r); in do_test()
108 if (pthread_attr_getinheritsched (&a, &s) != 0) in do_test()
124 int e = pthread_attr_setschedpolicy (&a, r); in do_test()
138 if (pthread_attr_getschedpolicy (&a, &s) != 0) in do_test()
154 int e = pthread_attr_setscope (&a, r); in do_test()
168 if (pthread_attr_getscope (&a, &s) != 0) in do_test()