Home | History | Annotate | Download | only in vpx_util

Lines Matching refs:ok

100   int ok = 1;
101 ok &= (CloseHandle(condition->waiting_sem_) != 0);
102 ok &= (CloseHandle(condition->received_sem_) != 0);
103 ok &= (CloseHandle(condition->signal_event_) != 0);
104 return !ok;
123 int ok = 1;
126 ok = SetEvent(condition->signal_event_);
129 ok &= (WaitForSingleObject(condition->received_sem_, INFINITE) !=
132 return !ok;
137 int ok;
144 ok = (WaitForSingleObject(condition->signal_event_, INFINITE) ==
146 ok &= ReleaseSemaphore(condition->received_sem_, 1, NULL);
148 return !ok;
161 OK, // ready to work