Home | History | Annotate | Download | only in adaptation

Lines Matching refs:CondVar

26 #include "CondVar.h"
33 ** Function: CondVar
40 CondVar::CondVar ()
49 ALOGE ("CondVar::CondVar: fail init; error=0x%X", res);
56 ** Function: ~CondVar
63 CondVar::~CondVar ()
68 ALOGE ("CondVar::~CondVar: fail destroy; error=0x%X", res);
82 void CondVar::wait (Mutex& mutex)
87 ALOGE ("CondVar::wait: fail wait; error=0x%X", res);
102 bool CondVar::wait (Mutex& mutex, long millisec)
109 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);