Home | History | Annotate | Download | only in src

Lines Matching refs:AutoHandle

962 class AutoHandle {
964 AutoHandle() : handle_(INVALID_HANDLE_VALUE) {}
965 explicit AutoHandle(HANDLE handle) : handle_(handle) {}
967 ~AutoHandle() { Reset(); }
982 GTEST_DISALLOW_COPY_AND_ASSIGN_(AutoHandle);