/external/valgrind/main/drd/tests/ |
pth_cancel_locked.c | 21 pthread_cond_wait(&s_cond, &s_mutex1); 39 pthread_cond_wait(&s_cond, &s_mutex1);
|
pth_cond_destroy_busy.c | 31 pthread_cond_wait(&s_cond, &s_mutex); 49 pthread_cond_wait(&s_cond, &s_mutex);
|
pth_cond_race.c | 48 pthread_cond_wait(&s_cond, &s_mutex); 61 // Wait until the main thread has entered pthread_cond_wait().
|
bug-235681.c | 2 * pthread_cond_wait() test program. 31 rc = pthread_cond_wait(&cond_var, &mutex);
|
/hardware/broadcom/wlan/bcmdhd/wifi_hal/ |
sync.h | 46 return pthread_cond_wait(&mCondition, &mMutex);
|
/external/valgrind/main/none/tests/x86/ |
yield.c | 23 pthread_cond_wait(&c_go, &m_go); 38 pthread_cond_wait(&c_go, &m_go); 67 pthread_cond_wait(&c_running, &m_go);
|
/system/extras/tests/bionic/libc/bionic/ |
test_pthread_cond.c | 18 pthread_cond_wait(&cond1, &test_lock ); 30 pthread_cond_wait(&cond2, &test_lock ); 43 pthread_cond_wait(&cond1, &test_lock );
|
/external/compiler-rt/test/tsan/ |
bench_mutex.cc | 14 pthread_cond_wait(&cv, &mtx);
|
cond.c | 21 pthread_cond_wait(&c, &m); 35 pthread_cond_wait(&c, &m);
|
cond_cancel.c | 18 pthread_cond_wait(&c, &m);
|
cond_race.cc | 34 pthread_cond_wait(&c->c, &c->m);
|
/external/valgrind/main/helgrind/tests/ |
tc23_bogus_condwait.c | 2 Tests passing bogus mutexes to pthread_cond_wait. */ 69 r= pthread_cond_wait(&cv, (pthread_mutex_t*)(4 + (char*)&mx[0]) ); 72 r= pthread_cond_wait(&cv, &mx[0]); 75 r= pthread_cond_wait(&cv, (pthread_mutex_t*)&rwl ); 78 r= pthread_cond_wait(&cv, &mx[2] );
|
tc23_bogus_condwait.stderr.exp | 10 by 0x........: pthread_cond_wait@* (hg_intercepts.c:...) 17 by 0x........: pthread_cond_wait@* (hg_intercepts.c:...) 24 by 0x........: pthread_cond_wait@* (hg_intercepts.c:...) 31 by 0x........: pthread_cond_wait@* (hg_intercepts.c:...) 38 by 0x........: pthread_cond_wait@* (hg_intercepts.c:...) 45 by 0x........: pthread_cond_wait@* (hg_intercepts.c:...) 52 by 0x........: pthread_cond_wait@* (hg_intercepts.c:...)
|
tc23_bogus_condwait.stderr.exp-mips32 | 10 by 0x........: pthread_cond_wait@* (hg_intercepts.c:...) 17 by 0x........: pthread_cond_wait@* (hg_intercepts.c:...) 24 by 0x........: pthread_cond_wait@* (hg_intercepts.c:...) 29 Thread #x's call to pthread_cond_wait failed 32 by 0x........: pthread_cond_wait@* (hg_intercepts.c:...) 39 by 0x........: pthread_cond_wait@* (hg_intercepts.c:...) 46 by 0x........: pthread_cond_wait@* (hg_intercepts.c:...) 53 by 0x........: pthread_cond_wait@* (hg_intercepts.c:...) 60 by 0x........: pthread_cond_wait@* (hg_intercepts.c:...)
|
pth_destroy_cond.c | 31 pthread_cond_wait(&cond, &mutex);
|
/external/lldb/test/functionalities/expr-doesnt-deadlock/ |
locking.c | 40 pthread_cond_wait (&control_condition, &control_mutex); 65 pthread_cond_wait (&thread_started_condition, &thread_started_mutex);
|
/external/valgrind/main/none/tests/ |
pth_cvsimple.c | 52 pthread_cond_wait(&count_hit_threshold, &count_lock); 78 // pthread_cond_wait() is never called. Or, we could get a spurious
|
/external/chromium_org/third_party/webrtc/system_wrappers/source/ |
condition_variable_posix.cc | 75 pthread_cond_wait(&cond_, &cs->mutex_); 119 pthread_cond_wait(&cond_, &cs->mutex_);
|
/external/webrtc/src/system_wrappers/source/ |
condition_variable_posix.cc | 86 pthread_cond_wait(&_cond, &cs->_mutex); 137 pthread_cond_wait(&_cond, &cs->_mutex);
|
/frameworks/rs/ |
rsSignal.cpp | 84 status = pthread_cond_wait(&mCondition, &mMutex); 90 status = pthread_cond_wait(&mCondition, &mMutex);
|
/external/chromium_org/native_client_sdk/src/libraries/sdk_util/ |
thread_safe_queue.h | 44 while (list_.empty()) pthread_cond_wait(&cond_, lock_.mutex());
|
/external/chromium_org/third_party/leveldatabase/src/port/ |
port_posix.cc | 38 PthreadCall("wait", pthread_cond_wait(&cv_, &mu_->mu_));
|
/external/chromium_org/third_party/libusb/src/libusb/os/ |
threads_posix.h | 40 #define usbi_cond_wait pthread_cond_wait
|
/external/chromium_org/third_party/skia/src/utils/ |
SkCondVar.cpp | 48 pthread_cond_wait(&fCond, &fMutex);
|
/external/compiler-rt/test/lsan/TestCases/ |
high_allocator_contention.cc | 21 while (!go) pthread_cond_wait(&cond, &mutex);
|