Lines Matching refs:CondVar
21 #include "CondVar.h"
30 ** Function: CondVar
37 CondVar::CondVar ()
43 ALOGE ("CondVar::CondVar: fail init; error=0x%X", res);
50 ** Function: ~CondVar
57 CondVar::~CondVar ()
62 ALOGE ("CondVar::~CondVar: fail destroy; error=0x%X", res);
76 void CondVar::wait (Mutex& mutex)
81 ALOGE ("CondVar::wait: fail wait; error=0x%X", res);
96 bool CondVar::wait (Mutex& mutex, long millisec)
103 ALOGE ("CondVar::wait: fail get time; errno=0x%X", errno);
124 ALOGE ("CondVar::wait: fail timed wait; error=0x%X", waitResult);
139 void CondVar::notifyOne ()
144 ALOGE ("CondVar::notifyOne: fail signal; error=0x%X", res);