Searched refs:pthread_cond_wait (Results 1 - 25 of 114) sorted by last modified time

12345

/external/webrtc/src/system_wrappers/source/
H A Dcondition_variable_posix.cc86 pthread_cond_wait(&_cond, &cs->_mutex);
137 pthread_cond_wait(&_cond, &cs->_mutex);
H A Devent_posix.cc163 retVal = pthread_cond_wait(&cond, &mutex);
/external/valgrind/main/none/tests/
H A Dpth_cvsimple.c52 pthread_cond_wait(&count_hit_threshold, &count_lock);
78 // pthread_cond_wait() is never called. Or, we could get a spurious
/external/valgrind/main/none/tests/x86/
H A Dyield.c23 pthread_cond_wait(&c_go, &m_go);
38 pthread_cond_wait(&c_go, &m_go);
67 pthread_cond_wait(&c_running, &m_go);
/external/webp/src/utils/
H A Dthread.c123 // 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/valgrind/main/drd/tests/
H A Dbug-235681.c2 * pthread_cond_wait() test program.
31 rc = pthread_cond_wait(&cond_var, &mutex);
H A Dfree_is_write.c52 while (count < THREAD_COUNT && pthread_cond_wait(&cond, &mutex) == 0)
H A Dmonitor_example.cpp121 pthread_cond_wait(&m_cond, &m_mutex);
H A Dpth_broadcast.c43 pthread_cond_wait(&p->m_cond, &p->m_mutex);
101 pthread_cond_wait(&s_cond, &s_mutex);
H A Dpth_cancel_locked.c21 pthread_cond_wait(&s_cond, &s_mutex1);
39 pthread_cond_wait(&s_cond, &s_mutex1);
H A Dpth_cond_destroy_busy.c31 pthread_cond_wait(&s_cond, &s_mutex);
49 pthread_cond_wait(&s_cond, &s_mutex);
H A Dpth_cond_race.c48 pthread_cond_wait(&s_cond, &s_mutex);
61 // Wait until the main thread has entered pthread_cond_wait().
H A Dpth_detached.c74 const int ret = pthread_cond_wait(&s_cond, &s_mutex);
H A Dthread_name.c35 pthread_cond_wait(&s_cond, &s_mutex);
H A Dtsan_thread_wrappers_pthread.h230 pthread_cond_wait(&cv_, &mu_);
280 void Wait(Mutex *mu) { CHECK(0 == pthread_cond_wait(&cv_, &mu->mu_)); }
/external/valgrind/main/gdbserver_tests/
H A Dsleepers.c104 rc = pthread_cond_wait(&ready, &ready_mutex);
/external/valgrind/main/helgrind/tests/
H A Dpth_cond_destroy_busy.stderr.exp26 by 0x........: pthread_cond_wait@* (hg_intercepts.c:...)
H A Dpth_destroy_cond.c31 pthread_cond_wait(&cond, &mutex);
H A Dtc20_verifywrap.c132 /* --------- 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);
H A Dtc20_verifywrap.stderr.exp99 ---------------- pthread_cond_wait et al ----------------
105 by 0x........: pthread_cond_wait@* (hg_intercepts.c:...)
110 Thread #x's call to pthread_cond_wait failed
113 by 0x........: pthread_cond_wait@* (hg_intercepts.c:...)
H A Dtc23_bogus_condwait.c2 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] );
H A Dtc23_bogus_condwait.stderr.exp10 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:...)
/external/stlport/test/unit/
H A Dallocator_test.cpp116 pthread_cond_wait(&condition, &mutex);
/external/stressapptest/src/
H A Dlogger.cc84 LOGGER_ASSERT(0 == pthread_cond_wait(&full_queue_cond_,
125 LOGGER_ASSERT(0 == pthread_cond_wait(&queued_lines_cond_,
/external/srec/audio/AudioIn/UNIX/src/
H A Daudioin.c217 int rc = pthread_cond_wait(&gThreadRunning, &gAudioMutex);
377 int rc = pthread_cond_wait(&gOpenExCalled, &gAudioMutex);
583 int rc = pthread_cond_wait(&gOpenExCalled, &gAudioMutex);
600 PLogError ( "Audio In Error pthread_cond_wait\n" );
1134 int rc = pthread_cond_wait(&gCloseCalled, &gAudioMutex);
1151 PLogError ( "Audio In Error pthread_cond_wait\n" );

Completed in 1924 milliseconds

12345