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

/packages/apps/Nfc/nci/jni/
H A DCondVar.cpp69 ** Function: wait
71 ** Description: Block the caller and wait for a condition.
76 void CondVar::wait (Mutex& mutex) function in class:CondVar
81 ALOGE ("CondVar::wait: fail wait; error=0x%X", res);
88 ** Function: wait
90 ** Description: Block the caller and wait for a condition.
93 ** Returns: True if wait is successful; false if timeout occurs.
96 bool CondVar::wait (Mutex& mutex, long millisec) function in class:CondVar
103 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 4310 milliseconds