Home | History | Annotate | Download | only in wtf

Lines Matching full:res

335     DWORD res = WaitForSingleObject(m_blockLock, INFINITE);
336 ASSERT(res == WAIT_OBJECT_0);
338 res = ReleaseSemaphore(m_blockLock, 1, 0);
339 ASSERT(res);
346 res = WaitForSingleObject(m_unblockLock, INFINITE);
347 ASSERT(res == WAIT_OBJECT_0);
357 res = WaitForSingleObject(m_blockLock, INFINITE);
358 ASSERT(res == WAIT_OBJECT_0);
360 res = ReleaseSemaphore(m_blockLock, 1, 0);
361 ASSERT(res);
365 res = ReleaseMutex(m_unblockLock);
366 ASSERT(res);
369 res = ReleaseSemaphore(m_blockLock, 1, 0); // Open the gate.
370 ASSERT(res);
382 DWORD res = WaitForSingleObject(m_unblockLock, INFINITE);
383 ASSERT(res == WAIT_OBJECT_0);
387 res = ReleaseMutex(m_unblockLock);
388 ASSERT(res);
402 res = WaitForSingleObject(m_blockLock, INFINITE); // Close the gate.
403 ASSERT(res == WAIT_OBJECT_0);
418 res = ReleaseMutex(m_unblockLock);
419 ASSERT(res);
423 res = ReleaseMutex(m_unblockLock);
424 ASSERT(res);
427 res = ReleaseSemaphore(m_blockQueue, signalsToIssue, 0);
428 ASSERT(res);