Searched refs:pthread_cond_wait (Results 1 - 25 of 114) sorted by relevance

12345

/external/valgrind/main/helgrind/tests/
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:...)
H A Dpth_destroy_cond.c31 pthread_cond_wait(&cond, &mutex);
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] );
/external/valgrind/main/drd/tests/
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().
/external/compiler-rt/test/tsan/
H A Dbench_mutex.cc14 pthread_cond_wait(&cv, &mtx);
H A Dcond.c21 pthread_cond_wait(&c, &m);
35 pthread_cond_wait(&c, &m);
H A Dcond_cancel.c18 pthread_cond_wait(&c, &m);
H A Dcond_race.cc34 pthread_cond_wait(&c->c, &c->m);
/external/lldb/test/functionalities/expr-doesnt-deadlock/
H A Dlocking.c40 pthread_cond_wait (&control_condition, &control_mutex);
65 pthread_cond_wait (&thread_started_condition, &thread_started_mutex);
/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/chromium_org/third_party/libusb/src/libusb/os/
H A Dthreads_posix.h40 #define usbi_cond_wait pthread_cond_wait
/external/chromium_org/native_client_sdk/src/examples/demo/nacl_io_demo/
H A Dqueue.c102 pthread_cond_wait(&g_queue_not_empty_cond, &g_queue_mutex);
/external/chromium_org/native_client_sdk/src/libraries/sdk_util/
H A Dthread_safe_queue.h44 while (list_.empty()) pthread_cond_wait(&cond_, lock_.mutex());
/external/chromium_org/third_party/leveldatabase/src/port/
H A Dport_posix.cc38 PthreadCall("wait", pthread_cond_wait(&cv_, &mu_->mu_));
/external/chromium_org/third_party/skia/src/utils/
H A DSkCondVar.cpp48 pthread_cond_wait(&fCond, &fMutex);
/external/lldb/source/Host/common/
H A DCondition.cpp92 err = ::pthread_cond_wait (&m_condition, mutex.GetMutex());
/external/skia/src/utils/
H A DSkCondVar.cpp48 pthread_cond_wait(&fCond, &fMutex);
/external/chromium_org/third_party/webrtc/system_wrappers/source/
H A Dcondition_variable_posix.cc75 pthread_cond_wait(&cond_, &cs->mutex_);
119 pthread_cond_wait(&cond_, &cs->mutex_);
/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);
/external/compiler-rt/lib/tsan/tests/rtl/
H A Dtsan_posix.cc112 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/libvpx/libvpx/vp9/decoder/
H A Dvp9_thread.c35 pthread_cond_wait(&worker->condition_, &worker->mutex_);
59 pthread_cond_wait(&worker->condition_, &worker->mutex_);
/external/lldb/tools/debugserver/source/
H A DPThreadEvent.cpp137 // pthread_cond_timedwait() or pthread_cond_wait() will atomically
170 err = ::pthread_cond_wait (m_set_condition.Condition(), m_mutex.Mutex());
185 // pthread_cond_timedwait() or pthread_cond_wait() will atomically
211 err = ::pthread_cond_wait (m_reset_condition.Condition(), m_mutex.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_,

Completed in 640 milliseconds

12345