Home | History | Annotate | Download | only in jni

Lines Matching refs:CondVar

21 #include "CondVar.h"
28 ** Function: CondVar
35 CondVar::CondVar ()
41 ALOGE ("CondVar::CondVar: fail init; error=0x%X", res);
48 ** Function: ~CondVar
55 CondVar::~CondVar ()
60 ALOGE ("CondVar::~CondVar: fail destroy; error=0x%X", res);
74 void CondVar::wait (Mutex& mutex)
79 ALOGE ("CondVar::wait: fail wait; error=0x%X", res);
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);
137 void CondVar::notifyOne ()
142 ALOGE ("CondVar::notifyOne: fail signal; error=0x%X", res);