/external/qemu/include/qemu/ |
thread.h | 38 * held as in the corresponding pthread_cond_wait calls!
|
/external/skia/src/utils/ |
SkCondVar.cpp | 48 pthread_cond_wait(&fCond, &fMutex);
|
/external/valgrind/main/drd/tests/ |
free_is_write.c | 52 while (count < THREAD_COUNT && pthread_cond_wait(&cond, &mutex) == 0)
|
thread_name.c | 35 pthread_cond_wait(&s_cond, &s_mutex);
|
tc23_bogus_condwait.stderr.exp-darwin-amd64 | 3 at 0x........: pthread_cond_wait (drd_pthread_intercepts.c:?) 7 at 0x........: pthread_cond_wait (drd_pthread_intercepts.c:?) 27 at 0x........: pthread_cond_wait (drd_pthread_intercepts.c:?) 34 at 0x........: pthread_cond_wait (drd_pthread_intercepts.c:?) 54 at 0x........: pthread_cond_wait (drd_pthread_intercepts.c:?)
|
tc23_bogus_condwait.stderr.exp-darwin-x86 | 3 at 0x........: pthread_cond_wait (drd_pthread_intercepts.c:?) 7 at 0x........: pthread_cond_wait (drd_pthread_intercepts.c:?) 27 at 0x........: pthread_cond_wait (drd_pthread_intercepts.c:?) 34 at 0x........: pthread_cond_wait (drd_pthread_intercepts.c:?) 54 at 0x........: pthread_cond_wait (drd_pthread_intercepts.c:?)
|
tc23_bogus_condwait.stderr.exp-linux-ppc | 3 at 0x........: pthread_cond_wait (drd_pthread_intercepts.c:?) 17 at 0x........: pthread_cond_wait (drd_pthread_intercepts.c:?) 24 at 0x........: pthread_cond_wait (drd_pthread_intercepts.c:?) 44 at 0x........: pthread_cond_wait (drd_pthread_intercepts.c:?) 64 at 0x........: pthread_cond_wait (drd_pthread_intercepts.c:?)
|
pth_broadcast.c | 43 pthread_cond_wait(&p->m_cond, &p->m_mutex); 101 pthread_cond_wait(&s_cond, &s_mutex);
|
pth_detached.c | 74 const int ret = pthread_cond_wait(&s_cond, &s_mutex);
|
tc23_bogus_condwait.stderr.exp-linux-x86 | 3 at 0x........: pthread_cond_wait (drd_pthread_intercepts.c:?) 17 at 0x........: pthread_cond_wait (drd_pthread_intercepts.c:?) 37 at 0x........: pthread_cond_wait (drd_pthread_intercepts.c:?) 57 at 0x........: pthread_cond_wait (drd_pthread_intercepts.c:?) 77 at 0x........: pthread_cond_wait (drd_pthread_intercepts.c:?)
|
/hardware/intel/common/wrs_omxil_core/utils/src/ |
workqueue.cpp | 93 pthread_cond_wait(&paused_wait, &executing_lock); /* wokeup by Run() */ 127 pthread_cond_wait(&wcond, &wlock); 153 pthread_cond_wait(&executing_wait, &executing_lock); 236 pthread_cond_wait(&complete, &cplock);
|
/external/valgrind/main/helgrind/tests/ |
tc20_verifywrap.c | 132 /* --------- pthread_cond_wait et al --------- */ 135 "\n---------------- pthread_cond_wait et al ----------------\n\n"); 137 /* make pthread_cond_wait fail. This is difficult. Our cunning 138 plan (tm) is to show up at pthread_cond_wait bearing a 140 indeed the case with glibc-2.5) that pthread_cond_wait notices 147 r= pthread_cond_wait( &cv, &mx4 ); assert(r);
|
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/ |
event_listener.cc | 96 return_code = pthread_cond_wait(&signal_cond_, 160 return_code = pthread_cond_wait(&signal_cond_,
|
/external/llvm/test/Linker/ |
2011-08-22-ResolveAlias.ll | 28 @_ZL25__gthrw_pthread_cond_waitP14pthread_cond_tP15pthread_mutex_t = alias weak i32 (%union.pthread_cond_t*, %union.pthread_mutex_t*)* @pthread_cond_wait 73 declare extern_weak i32 @pthread_cond_wait(%union.pthread_cond_t*, %union.pthread_mutex_t*)
|
/external/qemu/audio/ |
audio_pt_int.c | 137 err = pthread_cond_wait (&p->cond, &p->mutex); 139 logerr (p, err, "%s(%s): pthread_cond_wait failed", cap, AUDIO_FUNC);
|
/external/qemu/distrib/sdl-1.2.15/src/thread/pthread/ |
SDL_syscond.c | 150 if ( pthread_cond_wait(&cond->cond, &mutex->id) != 0 ) { 151 SDL_SetError("pthread_cond_wait() failed");
|
/external/qemu/distrib/sdl-1.2.15/src/thread/riscos/ |
SDL_syscond.c | 154 if ( pthread_cond_wait(&cond->cond, &mutex->id) != 0 ) { 155 SDL_SetError("pthread_cond_wait() failed");
|
/external/stressapptest/src/ |
logger.cc | 84 LOGGER_ASSERT(0 == pthread_cond_wait(&full_queue_cond_, 125 LOGGER_ASSERT(0 == pthread_cond_wait(&queued_lines_cond_,
|
/hardware/qcom/wlan/qcwcn/wifi_hal/ |
sync.h | 61 return pthread_cond_wait(&mCondition, &mMutex);
|
/external/compiler-rt/lib/tsan/tests/rtl/ |
tsan_posix.cc | 112 EXPECT_EQ(pthread_cond_wait(&ctx.c, &ctx.m), 0); 133 EXPECT_EQ(pthread_cond_wait(&ctx.c, &ctx.m), 0); 140 EXPECT_EQ(pthread_cond_wait(&ctx.c, &ctx.m), 0);
|
/external/libcxxabi/src/ |
cxa_guard.cpp | 24 implementation also uses pthread_cond_wait which has tested to not be a 206 if (pthread_cond_wait(&guard_cv, &guard_mut)) 218 if (pthread_cond_wait(&guard_cv, &guard_mut))
|
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/ |
cxa_guard.cpp | 24 implementation also uses pthread_cond_wait which has tested to not be a 206 if (pthread_cond_wait(&guard_cv, &guard_mut)) 218 if (pthread_cond_wait(&guard_cv, &guard_mut))
|
/external/chromium_org/third_party/libwebp/utils/ |
thread.c | 123 // a thread is waiting in pthread_cond_wait: allow it to be notified 126 // the event via its own pthread_cond_wait. 133 static int pthread_cond_wait(pthread_cond_t* const condition, function 164 pthread_cond_wait(&worker->impl_->condition_, &worker->impl_->mutex_); 191 pthread_cond_wait(&worker->impl_->condition_, &worker->impl_->mutex_);
|
/external/webp/src/utils/ |
thread.c | 123 // a thread is waiting in pthread_cond_wait: allow it to be notified 126 // the event via its own pthread_cond_wait. 133 static int pthread_cond_wait(pthread_cond_t* const condition, function 164 pthread_cond_wait(&worker->impl_->condition_, &worker->impl_->mutex_); 191 pthread_cond_wait(&worker->impl_->condition_, &worker->impl_->mutex_);
|
/development/ndk/sources/android/native_app_glue/ |
android_native_app_glue.c | 273 pthread_cond_wait(&android_app->cond, &android_app->mutex); 291 pthread_cond_wait(&android_app->cond, &android_app->mutex); 306 pthread_cond_wait(&android_app->cond, &android_app->mutex); 315 pthread_cond_wait(&android_app->cond, &android_app->mutex); 324 pthread_cond_wait(&android_app->cond, &android_app->mutex); 359 pthread_cond_wait(&android_app->cond, &android_app->mutex);
|