Home | History | Annotate | Download | only in win

Lines Matching full:m_handle

37     Win32Handle() : m_handle(INVALID_HANDLE_VALUE) { }
38 explicit Win32Handle(HANDLE handle) : m_handle(handle) { }
46 CloseHandle(m_handle);
47 m_handle = INVALID_HANDLE_VALUE;
50 bool isValid() const { return m_handle != INVALID_HANDLE_VALUE; }
52 HANDLE get() const { return m_handle; }
53 HANDLE release() { HANDLE ret = m_handle; m_handle = INVALID_HANDLE_VALUE; return ret; }
58 m_handle = handle;
62 HANDLE m_handle;