Lines Matching refs:r
25 pthread_rwlock_t r; in do_test() local
27 if (pthread_rwlock_init (&r, NULL) != 0) in do_test()
34 if (pthread_rwlock_rdlock (&r) != 0) in do_test()
41 if (pthread_rwlock_rdlock (&r) != 0) in do_test()
48 if (pthread_rwlock_unlock (&r) != 0) in do_test()
55 if (pthread_rwlock_unlock (&r) != 0) in do_test()
62 if (pthread_rwlock_wrlock (&r) != 0) in do_test()
69 if (pthread_rwlock_unlock (&r) != 0) in do_test()
76 if (pthread_rwlock_wrlock (&r) != 0) in do_test()
83 if (pthread_rwlock_unlock (&r) != 0) in do_test()
90 if (pthread_rwlock_rdlock (&r) != 0) in do_test()
97 if (pthread_rwlock_unlock (&r) != 0) in do_test()
104 if (pthread_rwlock_destroy (&r) != 0) in do_test()