Lines Matching refs:m_handle
78 : m_handle(0) in Event()
80 m_handle = CreateEvent(NULL, manualReset ? TRUE : FALSE, initialState ? TRUE : FALSE, NULL); in Event()
81 if (!m_handle) in Event()
87 CloseHandle(m_handle); in ~Event()
92 if (!SetEvent(m_handle)) in setSignaled()
98 if (!ResetEvent(m_handle)) in reset()
204 , m_handle (INVALID_HANDLE_VALUE) in FileReader()
217 m_handle = file; in start()
243 if (!ReadFile(m_handle, &tmpBuf[0], (DWORD)tmpBuf.size(), NULL, &overlapped)) in run()
270 if (!GetOverlappedResult(m_handle, &overlapped, &numBytesRead, FALSE)) in run()
302 if (!CancelIo(m_handle)) in run()
340 m_handle = INVALID_HANDLE_VALUE; in stop()