Home | History | Annotate | Download | only in src

Lines Matching refs:AutoHandle

1160 class AutoHandle {
1162 AutoHandle() : handle_(INVALID_HANDLE_VALUE) {}
1163 explicit AutoHandle(HANDLE handle) : handle_(handle) {}
1165 ~AutoHandle() { Reset(); }
1180 GTEST_DISALLOW_COPY_AND_ASSIGN_(AutoHandle);