Searched
full:pthread_join (Results
276 -
300 of
1086) sorted by null
<<11121314151617181920>>
/external/protobuf/m4/ |
acx_pthread.m4 | 81 AC_MSG_CHECKING([for pthread_join in LIBS=$PTHREAD_LIBS with CFLAGS=$PTHREAD_CFLAGS]) 82 AC_TRY_LINK_FUNC(pthread_join, acx_pthread_ok=yes) 173 # We check for pthread_join because it is in -lpthread on IRIX 180 [pthread_t th; pthread_join(th, 0); 284 [pthread_t th; pthread_join(th, 0); 304 [pthread_t th; pthread_join(th, 0); 323 [pthread_t th; pthread_join(th, 0);
|
/external/bluetooth/bluedroid/hci/src/ |
userial_mct.c | 339 int result = pthread_join(userial_cb.read_thread, NULL); 364 if ((result=pthread_join(userial_cb.read_thread, NULL)) < 0) 365 ALOGE( "pthread_join() FAILED result:%d", result);
|
/external/compiler-rt/lib/asan/tests/ |
asan_test.cc | 155 PTHREAD_JOIN(th, NULL); 170 PTHREAD_JOIN(th, NULL); 346 PTHREAD_JOIN(t[i], 0); 683 PTHREAD_JOIN(t, 0); 685 PTHREAD_JOIN(t, 0); 890 PTHREAD_JOIN(t, 0); 892 PTHREAD_JOIN(t, 0); 894 PTHREAD_JOIN(t, 0); 928 PTHREAD_JOIN(t, 0); 1083 PTHREAD_JOIN(t[i], 0) [all...] |
/external/compiler-rt/lib/lsan/ |
lsan_interceptors.cc | 268 INTERCEPTOR(int, pthread_join, void *th, void **ret) { 271 int res = REAL(pthread_join)(th, ret); 294 INTERCEPT_FUNCTION(pthread_join);
|
/external/compiler-rt/lib/sanitizer_common/tests/ |
sanitizer_linux_test.cc | 80 pthread_join(pthread_ids_[i], NULL); 210 ASSERT_EQ(0, pthread_join(tid, &result)); 229 ASSERT_EQ(0, pthread_join(tid, &result));
|
sanitizer_posix_test.cc | 48 ASSERT_EQ(0, pthread_join(tid, &retval));
|
standalone_malloc_test.cc | 84 pthread_join(t[i], 0);
|
/external/valgrind/main/ |
glibc-2.X-drd.supp | 74 drd-libpthread-pthread_join 76 fun:pthread_join 77 fun:pthread_join
|
/bionic/libc/bionic/ |
pthread_join.cpp | 34 int pthread_join(pthread_t t, void** return_value) { function
|
pthread_exit.cpp | 110 // pthread_join is responsible for destroying the pthread_internal_t for non-detached threads. 111 // The kernel will futex_wake on the pthread_internal_t::tid field to wake pthread_join.
|
/external/bison/lib/glthread/ |
threadlib.c | 56 if (pthread_join (thread, &retval) != 0)
|
/external/chromium_org/third_party/sfntly/cpp/src/test/ |
platform_thread.cc | 81 pthread_join(thread_handle, NULL);
|
/external/chromium_org/third_party/skia/src/utils/ |
SkThreadUtils_pthread.cpp | 116 pthread_join(pthreadData->fPThread, NULL);
|
/external/compiler-rt/test/tsan/ |
atomic_race.cc | 58 pthread_join(t, 0);
|
unaligned_norace.cc | 79 pthread_join(th, 0);
|
/external/lldb/test/lang/objc/print-obj/ |
blocked.m | 70 pthread_join (my_pthread, NULL);
|
/external/qemu/distrib/sdl-1.2.15/src/thread/pthread/ |
SDL_systhread.c | 107 pthread_join(thread->handle, 0);
|
/external/qemu/distrib/sdl-1.2.15/src/thread/riscos/ |
SDL_systhread.c | 132 pthread_join(thread->handle, 0);
|
/external/sfntly/cpp/src/test/ |
platform_thread.cc | 81 pthread_join(thread_handle, NULL);
|
/external/skia/src/utils/ |
SkThreadUtils_pthread.cpp | 116 pthread_join(pthreadData->fPThread, NULL);
|
/external/valgrind/main/drd/tests/ |
pth_barrier.c | 104 pthread_join(t[i].tid, 0);
|
rwlock_test.c | 102 pthread_join(tid[i], 0);
|
sem_open.c | 96 pthread_join(threadid, 0);
|
/external/valgrind/main/helgrind/tests/ |
annotate_hbefore.c | 325 r= pthread_join( t1, NULL ); assert(!r); 326 r= pthread_join( t2, NULL ); assert(!r); 403 r= pthread_join( t1, NULL ); assert(!r); 404 r= pthread_join( t2, NULL ); assert(!r);
|
/system/extras/tests/bionic/libc/common/ |
test_pthread_once.c | 76 if (pthread_join(threads[nn], NULL)) {
|
Completed in 1545 milliseconds
<<11121314151617181920>>