Lines Matching refs:e
59 int e; in tf() local
64 e = pthread_mutex_lock (&map[r]); in tf()
65 if (e != 0) in tf()
68 r, nr, e); in tf()
74 e = pthread_mutex_timedlock (&map[r], &before); in tf()
75 if (e != 0 && e != ETIMEDOUT) in tf()
79 r, nr, e); in tf()
84 e = pthread_mutex_trylock (&map[r]); in tf()
85 if (e != 0 && e != EBUSY) in tf()
88 r, nr, e); in tf()
94 if (e == EOWNERDEAD) in tf()
97 if (e == 0 || e == EOWNERDEAD) in tf()
102 int e = pthread_mutex_unlock (&map[r]); in tf() local
103 if (e != 0) in tf()
106 r, nr, e); in tf()
188 int e = pthread_mutex_init (&map[n], &ma); in do_test() local
189 if (e == ENOTSUP) in do_test()
198 if (e != 0) in do_test()
234 int e = pthread_mutex_lock (&map[n]); in do_test() local
235 if (e != 0 && e != EOWNERDEAD) in do_test()
251 int e = pthread_mutex_destroy (&map[n]); in do_test() local
252 if (e != 0) in do_test()
255 n + 1, round, e); in do_test()