Home | History | Annotate | Download | only in jni

Lines Matching defs:res

44     int const res = pthread_cond_init (&mCondition, &attr);
45 if (res)
47 ALOGE ("CondVar::CondVar: fail init; error=0x%X", res);
63 int const res = pthread_cond_destroy (&mCondition);
64 if (res)
66 ALOGE ("CondVar::~CondVar: fail destroy; error=0x%X", res);
82 int const res = pthread_cond_wait (&mCondition, mutex.nativeHandle());
83 if (res)
85 ALOGE ("CondVar::wait: fail wait; error=0x%X", res);
141 int const res = pthread_cond_signal (&mCondition);
142 if (res)
144 ALOGE ("CondVar::notifyOne: fail signal; error=0x%X", res);