HomeSort by relevance Sort by last modified time
    Searched refs:pthread_cond_wait (Results 1 - 25 of 107) sorted by null

1 2 3 4 5

  /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 );
test_cond.c 44 pthread_cond_wait(&wait, &lock);
  /external/chromium/base/
condition_variable_posix.cc 30 int rv = pthread_cond_wait(&condition_, user_mutex_);
  /development/ndk/sources/android/native_app_glue/
android_native_app_glue.c 269 pthread_cond_wait(&android_app->cond, &android_app->mutex);
287 pthread_cond_wait(&android_app->cond, &android_app->mutex);
302 pthread_cond_wait(&android_app->cond, &android_app->mutex);
311 pthread_cond_wait(&android_app->cond, &android_app->mutex);
320 pthread_cond_wait(&android_app->cond, &android_app->mutex);
355 pthread_cond_wait(&android_app->cond, &android_app->mutex);
  /system/media/opensles/libopensles/
locks.c 229 /** \brief Wait on the condition variable associated with the object; see pthread_cond_wait */
243 ok = pthread_cond_wait(&this->mCond, &this->mMutex);
254 ok = pthread_cond_wait(&this->mCond, &this->mMutex);
ThreadPool.c 245 ok = pthread_cond_wait(&tp->mCondNotFull, &tp->mMutex);
286 ok = pthread_cond_wait(&tp->mCondNotEmpty, &tp->mMutex);
  /external/qemu/distrib/sdl-1.2.12/src/cdrom/macosx/
SDLOSXCAGuard.c 148 theError = pthread_cond_wait(&cag->mCondVar, &cag->mMutex);
  /external/qemu/distrib/sdl-1.2.12/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.12/src/thread/riscos/
SDL_syscond.c 154 if ( pthread_cond_wait(&cond->cond, &mutex->id) != 0 ) {
155 SDL_SetError("pthread_cond_wait() failed");
  /external/skia/src/ports/
SkOSEvent_android.cpp 75 status = pthread_cond_wait(&gTimerCond, &gTimerMutex);
  /external/clearsilver/util/
ulocks.c 177 if((err = pthread_cond_wait(cond, mutex)))
  /external/qemu/audio/
audio_pt_int.c 112 err = pthread_cond_wait (&p->cond, &p->mutex);
114 logerr (p, err, "%s(%s): pthread_cond_wait failed", cap, AUDIO_FUNC);
  /external/stlport/test/unit/
allocator_test.cpp 116 pthread_cond_wait(&condition, &mutex);
  /ndk/sources/android/stlport/test/unit/
allocator_test.cpp 116 pthread_cond_wait(&condition, &mutex);
  /device/samsung/crespo/sec_mm/sec_omx/sec_osal/
SEC_OSAL_Event.c 199 pthread_cond_wait(&event->condition, (pthread_mutex_t *)(event->mutex));
  /external/qemu/
qemu-thread.c 115 err = pthread_cond_wait(&cond->cond, &mutex->lock);
  /external/srec/audio/AudioIn/UNIX/src/
audioin.c 217 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" );
    [all...]
  /frameworks/base/libs/rs/
rsLocklessFifo.cpp 258 status = pthread_cond_wait(&mCondition, &mMutex);
  /external/bluetooth/glib/gthread/
gthread-posix.c 210 /* pthread_cond_signal, pthread_cond_broadcast and pthread_cond_wait
231 result = pthread_cond_wait ((pthread_cond_t *)cond,
454 (void (*)(GCond *, GMutex *)) pthread_cond_wait,
  /external/libxml2/
threads.c 80 extern int pthread_cond_wait ()
374 pthread_cond_wait(&tok->cv, &tok->lock);
874 (pthread_cond_wait != NULL) &&
  /hardware/msm7k/librpc/
clnt.c 84 pthread_cond_wait(&client->wait_cb,
218 pthread_cond_wait(
358 pthread_cond_wait(&client->wait_reply, &client->wait_reply_lock);
  /dalvik/vm/compiler/
Compiler.c 554 pthread_cond_wait(&gDvmJit.compilerQueueActivity,
586 pthread_cond_wait(&gDvmJit.compilerQueueActivity,
  /bionic/libc/include/
pthread.h 178 int pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex);
  /dalvik/vm/
Thread.h 412 int cc __attribute__ ((__unused__)) = pthread_cond_wait(pCond, pMutex);
  /dalvik/vm/test/
AtomicTest.c 190 pthread_cond_wait(&waitCond, &waitLock);

Completed in 314 milliseconds

1 2 3 4 5