Lines Matching refs:AutoHandle
1164 class AutoHandle {1166 AutoHandle() : handle_(INVALID_HANDLE_VALUE) {}1167 explicit AutoHandle(HANDLE handle) : handle_(handle) {}1169 ~AutoHandle() { Reset(); }1184 GTEST_DISALLOW_COPY_AND_ASSIGN_(AutoHandle);