Home | History | Annotate | Download | only in adaptation

Lines Matching defs:wait

71 ** Function:        wait
73 ** Description: Block the caller and wait for a condition.
78 void CondVar::wait (Mutex& mutex)
83 ALOGE ("CondVar::wait: fail wait; error=0x%X", res);
90 ** Function: wait
92 ** Description: Block the caller and wait for a condition.
95 ** Returns: True if wait is successful; false if timeout occurs.
98 bool CondVar::wait (Mutex& mutex, long millisec)
105 ALOGE ("CondVar::wait: fail get time; errno=0x%X", errno);
126 ALOGE ("CondVar::wait: fail timed wait; error=0x%X", waitResult);