Lines Matching refs:res
46 int const res = pthread_cond_init(&mCondition, &attr); in CondVar() local
47 if (res) { in CondVar()
48 LOG(ERROR) << StringPrintf("CondVar::CondVar: fail init; error=0x%X", res); in CondVar()
62 int const res = pthread_cond_destroy(&mCondition); in ~CondVar() local
63 if (res) { in ~CondVar()
65 res); in ~CondVar()
79 int const res = pthread_cond_wait(&mCondition, mutex.nativeHandle()); in wait() local
80 if (res) { in wait()
81 LOG(ERROR) << StringPrintf("CondVar::wait: fail wait; error=0x%X", res); in wait()
131 int const res = pthread_cond_signal(&mCondition); in notifyOne() local
132 if (res) { in notifyOne()
134 res); in notifyOne()