Searched defs:wait (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Nfc/nci/jni/
H A DCondVar.cpp67 ** Function: wait
69 ** Description: Block the caller and wait for a condition.
74 void CondVar::wait (Mutex& mutex) function in class:CondVar
79 ALOGE ("CondVar::wait: fail wait; error=0x%X", res);
86 ** Function: wait
88 ** Description: Block the caller and wait for a condition.
91 ** Returns: True if wait is successful; false if timeout occurs.
94 bool CondVar::wait (Mutex& mutex, long millisec) function in class:CondVar
101 ALOGE ("CondVar::wait
[all...]
H A DSyncEvent.h59 ** Function: wait
61 ** Description: Block the thread and wait for the event to occur.
66 void wait () function in class:SyncEvent
68 mCondVar.wait (mMutex);
74 ** Function: wait
76 ** Description: Block the thread and wait for the event to occur.
79 ** Returns: True if wait is successful; false if timeout occurs.
82 bool wait (long millisec) function in class:SyncEvent
84 bool retVal = mCondVar.wait (mMutex, millisec);

Completed in 77 milliseconds