Home | History | Annotate | Download | only in src

Lines Matching full:autohandle

945 class AutoHandle {
947 AutoHandle() : handle_(INVALID_HANDLE_VALUE) {}
948 explicit AutoHandle(HANDLE handle) : handle_(handle) {}
950 ~AutoHandle() { Reset(); }
965 GTEST_DISALLOW_COPY_AND_ASSIGN_(AutoHandle);