Lines Matching refs:m_condition

191     m_condition = CreateEvent(NULL, FALSE, FALSE, NULL);  in Condition()
193 …G: " << (void *)GetCurrentThreadId() << ": Initialised condition " << &m_condition << " \"" << m_n… in Condition()
200 …UG: " << (void *)GetCurrentThreadId() << ": Destroying condition " << &m_condition << " \"" << m_n… in ~Condition()
203 CloseHandle(m_condition); in ~Condition()
211 …TION DEBUG: " << (void *)GetCurrentThreadId() << ": Want to lock " << &m_condition << " \"" << m_n… in lock()
216 …cerr << "CONDITION DEBUG: " << (void *)GetCurrentThreadId() << ": Locked " << &m_condition << " \"… in lock()
225 …DITION DEBUG: " << (void *)GetCurrentThreadId() << ": Not locked " << &m_condition << " \"" << m_n… in unlock()
230 …cerr << "CONDITION DEBUG: " << (void *)GetCurrentThreadId() << ": Unlocking " << &m_condition << "… in unlock()
242 …DITION DEBUG: " << (void *)GetCurrentThreadId() << ": Waiting on " << &m_condition << " \"" << m_n… in wait()
244 SignalObjectAndWait(m_mutex, m_condition, INFINITE, FALSE); in wait()
253 … DEBUG: " << (void *)GetCurrentThreadId() << ": Timed waiting on " << &m_condition << " \"" << m_n… in wait()
255 SignalObjectAndWait(m_mutex, m_condition, ms, FALSE); in wait()
260 …TION DEBUG: " << (void *)GetCurrentThreadId() << ": Wait done on " << &m_condition << " \"" << m_n… in wait()
270 …cerr << "CONDITION DEBUG: " << (void *)GetCurrentThreadId() << ": Signalling " << &m_condition << … in signal()
272 SetEvent(m_condition); in signal()
452 pthread_cond_init(&m_condition, 0); in Condition()
454 …N DEBUG: " << (void *)pthread_self() << ": Initialised condition " << &m_condition << " \"" << m_n… in Condition()
461 …ON DEBUG: " << (void *)pthread_self() << ": Destroying condition " << &m_condition << " \"" << m_n… in ~Condition()
464 pthread_cond_destroy(&m_condition); in ~Condition()
472 …cerr << "CONDITION DEBUG: " << (void *)pthread_self() << ": Want to lock " << &m_condition << " \"… in lock()
477 …cerr << "CONDITION DEBUG: " << (void *)pthread_self() << ": Locked " << &m_condition << " \"" << m… in lock()
486 …cerr << "CONDITION DEBUG: " << (void *)pthread_self() << ": Not locked " << &m_condition << " \"" … in unlock()
491 …cerr << "CONDITION DEBUG: " << (void *)pthread_self() << ": Unlocking " << &m_condition << " \"" <… in unlock()
503 …cerr << "CONDITION DEBUG: " << (void *)pthread_self() << ": Waiting on " << &m_condition << " \"" … in wait()
505 pthread_cond_wait(&m_condition, &m_mutex); in wait()
523 …DITION DEBUG: " << (void *)pthread_self() << ": Timed waiting on " << &m_condition << " \"" << m_n… in wait()
525 pthread_cond_timedwait(&m_condition, &m_mutex, &timeout); in wait()
529 …cerr << "CONDITION DEBUG: " << (void *)pthread_self() << ": Wait done on " << &m_condition << " \"… in wait()
539 …cerr << "CONDITION DEBUG: " << (void *)pthread_self() << ": Signalling " << &m_condition << " \"" … in signal()
541 pthread_cond_signal(&m_condition); in signal()