Home | History | Annotate | Download | only in adaptation

Lines Matching refs:CondVar

26 #include "CondVar.h"
32 ** Function: CondVar
39 CondVar::CondVar ()
45 ALOGE ("CondVar::CondVar: fail init; error=0x%X", res);
52 ** Function: ~CondVar
59 CondVar::~CondVar ()
64 ALOGE ("CondVar::~CondVar: fail destroy; error=0x%X", res);
78 void CondVar::wait (Mutex& mutex)
83 ALOGE ("CondVar::wait: fail wait; error=0x%X", res);
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);
141 void CondVar::notifyOne ()
146 ALOGE ("CondVar::notifyOne: fail signal; error=0x%X", res);