/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_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);
|
free_is_write.c | 52 while (count < THREAD_COUNT && pthread_cond_wait(&cond, &mutex) == 0)
|
thread_name.c | 32 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:?)
|
/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/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:...)
|
pth_destroy_cond.c | 31 pthread_cond_wait(&cond, &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/native_client_sdk/src/examples/api/input_event/ |
shared_queue.h | 32 // pthread_cond_wait so we reimplement a scoped lock here. 108 // If the user does want to wait, we will wait for pthread_cond_wait, 110 // time so that a spurious wake-up of pthread_cond_wait is handled. 118 pthread_cond_wait(&queue_condition_var_, &queue_mutex_); 126 // we called pthread_cond_wait (which released the mutex, waited for the
|
/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/skia/src/utils/ |
SkCondVar.cpp | 48 pthread_cond_wait(&fCond, &fMutex);
|
/external/chromium_org/third_party/libwebp/utils/ |
thread.c | 103 // a thread is waiting in pthread_cond_wait: allow it to be notified 106 // the event via its own pthread_cond_wait. 113 static int pthread_cond_wait(pthread_cond_t* const condition, function 142 pthread_cond_wait(&worker->condition_, &worker->mutex_); 168 pthread_cond_wait(&worker->condition_, &worker->mutex_);
|
/external/libvpx/libvpx/vp9/decoder/ |
vp9_thread.c | 106 // a thread is waiting in pthread_cond_wait: allow it to be notified 109 // the event via its own pthread_cond_wait. 116 static int pthread_cond_wait(pthread_cond_t* const condition, function 145 pthread_cond_wait(&worker->condition_, &worker->mutex_); 169 pthread_cond_wait(&worker->condition_, &worker->mutex_);
|
/external/webp/src/utils/ |
thread.c | 103 // a thread is waiting in pthread_cond_wait: allow it to be notified 106 // the event via its own pthread_cond_wait. 113 static int pthread_cond_wait(pthread_cond_t* const condition, function 142 pthread_cond_wait(&worker->condition_, &worker->mutex_); 168 pthread_cond_wait(&worker->condition_, &worker->mutex_);
|