/external/valgrind/main/drd/tests/ |
threaded-fork.c | 32 pthread_join(childthread, &res);
|
/external/valgrind/main/helgrind/tests/ |
free_is_write.c | 39 pthread_join(tid, NULL);
|
pth_destroy_cond.c | 35 pthread_join(thread, NULL);
|
tc05_simple_race.c | 38 if (pthread_join(child, NULL)) {
|
tc06_two_races.c | 37 if (pthread_join(child, NULL)) {
|
tc14_laog_dinphils.c | 39 pthread_join(phil[i], NULL);
|
tc16_byterace.c | 36 if (pthread_join(child, NULL)) {
|
hg03_inherit.c | 49 pthread_join(a, NULL); 63 pthread_join(b, NULL);
|
/external/compiler-rt/test/msan/ |
dtls_test.c | 50 pthread_join(t, 0); 52 pthread_join(t, 0);
|
/external/compiler-rt/test/tsan/ |
mutexset6.cc | 48 pthread_join(t[0], NULL); 49 pthread_join(t[1], NULL);
|
/external/lldb/test/functionalities/expr-doesnt-deadlock/ |
locking.c | 15 // by the time the main thread reaches the pthread_join below, this thread 76 pthread_join (thread_1, NULL);
|
/external/llvm/unittests/Support/ |
ManagedStatic.cpp | 53 pthread_join(t1, nullptr); 54 pthread_join(t2, nullptr);
|
/external/valgrind/main/none/tests/x86/ |
yield.c | 73 pthread_join(a, NULL); 74 pthread_join(b, NULL);
|
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/ |
pthread_join.c | 2 * pthread_join.c 51 pthread_join (pthread_t thread, void **value_ptr) function 126 * Pthread_join is a cancelation point. 143 * pthread_join() or pthread_detach() specifying the same 157 } /* pthread_join */
|
/external/compiler-rt/lib/tsan/tests/rtl/ |
tsan_posix.cc | 66 EXPECT_EQ(pthread_join(th[0], 0), 0); 68 EXPECT_EQ(pthread_join(th[1], 0), 0); 69 EXPECT_EQ(pthread_join(th[2], 0), 0); 87 EXPECT_EQ(pthread_join(th[i], 0), 0); 143 EXPECT_EQ(pthread_join(th, 0), 0);
|
/bionic/tests/ |
pthread_test.cpp | 132 ASSERT_EQ(0, pthread_join(t, &result)); 155 return reinterpret_cast<void*>(pthread_join(reinterpret_cast<pthread_t>(arg), NULL)); 170 ASSERT_EQ(0, pthread_join(t, &result)); 180 ASSERT_EQ(0, pthread_join(t, &result)); 201 // ...pthread_join should fail. 203 ASSERT_EQ(EINVAL, pthread_join(t1, &result)); 216 sleep(1); // (Give t2 a chance to call pthread_join.) 226 ASSERT_EQ(0, pthread_join(t2, &join_result)); 232 ASSERT_EQ(EDEADLK, pthread_join(pthread_self(), &result)); 264 pthread_join(data->main_thread, NULL) [all...] |
/external/compiler-rt/lib/sanitizer_common/tests/ |
sanitizer_pthread_wrappers.h | 27 # define PTHREAD_JOIN(a, b) ASSERT_EQ(0, pthread_join(a, b)) 54 inline void PTHREAD_JOIN(pthread_t thread, void **value_ptr) {
|
/external/compiler-rt/lib/tsan/tests/unit/ |
tsan_mutex_test.cc | 103 pthread_join(threads[i], 0); 113 pthread_join(threads[i], 0); 123 pthread_join(threads[i], 0);
|
/external/lldb/test/functionalities/stop-hook/multiple_threads/ |
main.cpp | 83 err = ::pthread_join (g_thread_1, &thread_result); 84 err = ::pthread_join (g_thread_2, &thread_result); 85 err = ::pthread_join (g_thread_3, &thread_result);
|
/external/lldb/test/functionalities/watchpoint/hello_watchlocation/ |
main.cpp | 95 err = ::pthread_join (g_thread_1, &thread_result); 96 err = ::pthread_join (g_thread_2, &thread_result); 97 err = ::pthread_join (g_thread_3, &thread_result);
|
/external/lldb/test/functionalities/watchpoint/multiple_threads/ |
main.cpp | 87 err = ::pthread_join (g_thread_1, &thread_result); 88 err = ::pthread_join (g_thread_2, &thread_result); 89 err = ::pthread_join (g_thread_3, &thread_result);
|
/external/lldb/test/functionalities/watchpoint/watchpoint_set_command/ |
main.cpp | 110 err = ::pthread_join (g_thread_1, &thread_result); 111 err = ::pthread_join (g_thread_2, &thread_result); 112 err = ::pthread_join (g_thread_3, &thread_result);
|
/external/lldb/test/python_api/lldbutil/iter/ |
main.cpp | 123 err = ::pthread_join (g_thread_1, &thread_result); 124 err = ::pthread_join (g_thread_2, &thread_result); 125 err = ::pthread_join (g_thread_3, &thread_result);
|
/external/lldb/test/python_api/lldbutil/process/ |
main.cpp | 123 err = ::pthread_join (g_thread_1, &thread_result); 124 err = ::pthread_join (g_thread_2, &thread_result); 125 err = ::pthread_join (g_thread_3, &thread_result);
|
/external/lldb/test/python_api/module_section/ |
main.cpp | 123 err = ::pthread_join (g_thread_1, &thread_result); 124 err = ::pthread_join (g_thread_2, &thread_result); 125 err = ::pthread_join (g_thread_3, &thread_result);
|