Lines Matching refs:e
31 int e = pthread_mutex_unlock (&m); in tf() local
32 if (e == 0) in tf()
37 else if (e != EPERM) in tf()
43 e = pthread_mutex_trylock (&m); in tf()
44 if (e == 0) in tf()
49 if (e != EBUSY) in tf()
55 e = pthread_barrier_wait (&b); in tf()
56 if (e != 0 && e != PTHREAD_BARRIER_SERIAL_THREAD) in tf()
62 e = pthread_barrier_wait (&b); in tf()
63 if (e != 0 && e != PTHREAD_BARRIER_SERIAL_THREAD) in tf()
69 e = pthread_mutex_unlock (&m); in tf()
70 if (e == 0) in tf()
75 else if (e != EPERM) in tf()
101 int e; in do_test() local
123 e = pthread_mutex_init (&m, &a); in do_test()
124 if (e != 0) in do_test()
127 if (e == ENOTSUP) in do_test()
143 e = pthread_mutex_unlock (&m); in do_test()
144 if (e == 0) in do_test()
149 else if (e != EPERM) in do_test()
161 e = pthread_mutex_lock (&m); in do_test()
162 if (e == 0) in do_test()
167 else if (e != EDEADLK) in do_test()
180 e = pthread_barrier_wait (&b); in do_test()
181 if (e != 0 && e != PTHREAD_BARRIER_SERIAL_THREAD) in do_test()
193 e = pthread_mutex_unlock (&m); in do_test()
194 if (e == 0) in do_test()
199 else if (e != EPERM) in do_test()
205 e = pthread_barrier_wait (&b); in do_test()
206 if (e != 0 && e != PTHREAD_BARRIER_SERIAL_THREAD) in do_test()