/external/lldb/test/python_api/watchpoint/watchlocation/ |
main.cpp | 93 err = ::pthread_join (g_thread_1, &thread_result); 94 err = ::pthread_join (g_thread_2, &thread_result); 95 err = ::pthread_join (g_thread_3, &thread_result);
|
/external/valgrind/main/none/tests/ |
thread-exits.c | 78 ret = pthread_join(t, NULL); 80 printf("pthread_join failed: %s\n", strerror(ret)); 130 pthread_join(pth, NULL);
|
pth_atfork1.c | 85 pthread_join (th, &res); 88 error(EXIT_FAILURE, 0, "pthread_join res != 0" );
|
/external/compiler-rt/lib/asan/tests/ |
asan_mac_test.cc | 31 PTHREAD_JOIN(child, NULL); // Shouldn't be reached. 57 PTHREAD_JOIN(th1, NULL); 59 PTHREAD_JOIN(th2, NULL); 182 PTHREAD_JOIN(workers[i], 0); 184 PTHREAD_JOIN(forker, 0); 201 PTHREAD_JOIN(th, NULL);
|
/external/chromium_org/native_client_sdk/src/libraries/ppapi_stub/ |
ppapi_main.c | 22 * This is a cut-down version of pthread_create()/pthread_join(). 55 return pthread_join((pthread_t) tid, NULL);
|
/external/compiler-rt/lib/tsan/tests/rtl/ |
tsan_thread.cc | 53 pthread_join(threads[i % kAlive], 0); 57 pthread_join(threads[i], 0);
|
/external/compiler-rt/test/asan/TestCases/ |
deep_thread_stack.cc | 32 pthread_join(thread, NULL); 39 pthread_join(runner, NULL);
|
current_allocated_bytes.cc | 35 assert(0 == pthread_join(thr[j], 0));
|
/external/compiler-rt/test/tsan/ |
simple_stack.c | 45 pthread_join(t[0], NULL); 46 pthread_join(t[1], NULL);
|
/external/lldb/test/functionalities/thread/exit_during_step/ |
main.cpp | 82 pthread_join(thread_2, NULL); 88 pthread_join(thread_1, NULL);
|
/external/lldb/test/functionalities/thread/multi_break/ |
main.cpp | 60 pthread_join(thread_1, NULL); 61 pthread_join(thread_2, NULL);
|
/external/lldb/test/functionalities/thread/step_out/ |
main.cpp | 62 pthread_join(thread_1, NULL); 63 pthread_join(thread_2, NULL);
|
/external/lldb/test/functionalities/thread/thread_exit/ |
main.cpp | 80 pthread_join(thread_1, NULL); 86 pthread_join(thread_2, NULL);
|
/external/valgrind/main/drd/tests/ |
pth_inconsistent_cond_wait.c | 137 PTH_CALL(pthread_join(tid1, 0)); 138 PTH_CALL(pthread_join(tid2, 0));
|
std_list.cpp | 93 err = pthread_join(thread1, NULL); 96 err = pthread_join(thread2, NULL);
|
/external/valgrind/main/helgrind/tests/ |
locked_vs_unlocked2.c | 64 r= pthread_join(child1, NULL); assert(!r); 65 r= pthread_join(child2, NULL); assert(!r);
|
tc21_pthonce.c | 31 * exit of the threads using the pthread_join() operation. 92 pthread_join(threads[i], NULL);
|
/hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/osal/ |
Exynos_OSAL_Thread.c | 119 if (pthread_join(thread->pthread, NULL) != 0) { 142 pthread_join(thread->pthread, NULL);
|
/external/bluetooth/bluedroid/osi/test/ |
reactor_test.cpp | 29 pthread_join(thread, NULL);
|
/external/chromium_org/mojo/public/cpp/utility/lib/ |
thread.cc | 58 int rv MOJO_ALLOW_UNUSED = pthread_join(thread_, NULL);
|
/external/chromium_org/ppapi/native_client/src/untrusted/irt_stub/ |
thread_creator.c | 30 return pthread_join((pthread_t) tid, NULL);
|
/external/compiler-rt/lib/tsan/benchmarks/ |
mini_bench_local.cc | 44 pthread_join(t[i], 0);
|
mini_bench_shared.cc | 46 pthread_join(t[i], 0);
|
/external/compiler-rt/test/asan/TestCases/Linux/ |
tsd_dtor_leak.cc | 32 pthread_join(t, 0);
|
/external/compiler-rt/test/lsan/TestCases/ |
cleanup_in_tsd_destructor.cc | 40 res = pthread_join(thread_id, 0);
|