Home | History | Annotate | Download | only in jni

Lines Matching refs:wait

67 ** Function:        wait
69 ** Description: Block the caller and wait for a condition.
74 void CondVar::wait (Mutex& mutex)
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)
101 ALOGE ("CondVar::wait: fail get time; errno=0x%X", errno);
122 ALOGE ("CondVar::wait: fail timed wait; error=0x%X", waitResult);