Lines Matching refs:cv
40 ConditionVariable cv; in TEST() local
44 cv.NotifyOne(); in TEST()
45 CHECK_EQ(false, cv.WaitFor(&mutex, TimeDelta::FromMicroseconds(n))); in TEST()
47 cv.NotifyAll(); in TEST()
48 CHECK_EQ(false, cv.WaitFor(&mutex, TimeDelta::FromMicroseconds(n))); in TEST()
155 ConditionVariable cv; in TEST() local
160 threads[n].cv_ = &cv; in TEST()
178 cv.Wait(&mutex); in TEST()
201 cv.NotifyAll(); in TEST()
209 cv.Wait(&mutex); in TEST()
236 ConditionVariable* cv, in LoopIncrementThread() argument
239 limit_(limit), thread_count_(thread_count), cv_(cv), mutex_(mutex) { in LoopIncrementThread()
278 ConditionVariable cv; in TEST() local
287 n, &counter, limit, thread_count, &cv, &mutex); in TEST()