Home | History | Annotate | Download | only in src

Lines Matching refs:AutoHandle

984 class AutoHandle {
986 AutoHandle() : handle_(INVALID_HANDLE_VALUE) {}
987 explicit AutoHandle(HANDLE handle) : handle_(handle) {}
989 ~AutoHandle() { Reset(); }
1004 GTEST_DISALLOW_COPY_AND_ASSIGN_(AutoHandle);