Searched defs:Cond (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Runtime/r3/posix/
H A Dsemevent-posix.cpp68 pthread_cond_t Cond; member in struct:RTSEMEVENTINTERNAL
126 rc = pthread_cond_init(&pThis->Cond, &CondAttr);
171 pthread_cond_destroy(&pThis->Cond);
208 rc = pthread_cond_destroy(&pThis->Cond);
211 pthread_cond_broadcast(&pThis->Cond);
286 rc = pthread_cond_signal(&pThis->Cond);
291 rc = pthread_cond_signal(&pThis->Cond); /* give'm another kick... */
382 rc = pthread_cond_wait(&pThis->Cond, &pThis->Mutex);
478 rc = pthread_cond_timedwait(&pThis->Cond, &pThis->Mutex, &ts);
H A Dsemeventmulti-posix.cpp75 pthread_cond_t Cond; member in struct:RTSEMEVENTMULTIINTERNAL
137 rc = pthread_cond_init(&pThis->Cond, &CondAttr);
181 pthread_cond_destroy(&pThis->Cond);
216 rc = pthread_cond_destroy(&pThis->Cond);
219 pthread_cond_broadcast(&pThis->Cond);
291 rc = pthread_cond_broadcast(&pThis->Cond);
296 rc = pthread_cond_broadcast(&pThis->Cond); /* give'm another kick... */
432 rc = pthread_cond_wait(&pThis->Cond, &pThis->Mutex);
561 rc = pthread_cond_timedwait(&pThis->Cond, &pThis->Mutex, &ts);
/vbox/src/VBox/Storage/testcase/
H A DVDScriptInterp.cpp898 VDSCRIPTARG Cond; local
899 vdScriptInterpreterPopValue(pThis, &Cond);
900 AssertMsg(Cond.enmType == VDSCRIPTTYPE_BOOL,
903 if (Cond.f)
948 VDSCRIPTARG Cond; local
949 vdScriptInterpreterPopValue(pThis, &Cond);
950 AssertMsg(Cond.enmType == VDSCRIPTTYPE_BOOL,
953 if (Cond.f)

Completed in 55 milliseconds