Lines Matching refs:th
59 pthread_t th[3]; in TEST() local
63 EXPECT_EQ(__interceptor_pthread_create(&th[0], 0, dtors_thread, &k1), 0); in TEST()
64 EXPECT_EQ(__interceptor_pthread_create(&th[1], 0, dtors_thread, &k2), 0); in TEST()
65 EXPECT_EQ(__interceptor_pthread_join(th[0], 0), 0); in TEST()
66 EXPECT_EQ(__interceptor_pthread_create(&th[2], 0, dtors_thread, &k3), 0); in TEST()
67 EXPECT_EQ(__interceptor_pthread_join(th[1], 0), 0); in TEST()
68 EXPECT_EQ(__interceptor_pthread_join(th[2], 0), 0); in TEST()
82 pthread_t th[kThreads]; in local_thread() local
84 EXPECT_EQ(__interceptor_pthread_create(&th[i], 0, local_thread, in local_thread()
88 EXPECT_EQ(__interceptor_pthread_join(th[i], 0), 0); in local_thread()
137 pthread_t th; in TEST() local
138 EXPECT_EQ(__interceptor_pthread_create(&th, 0, cond_thread, &ctx), 0); in TEST()
152 EXPECT_EQ(__interceptor_pthread_join(th, 0), 0); in TEST()