Home | History | Annotate | Download | only in src

Lines Matching defs:AutoHandle

1332 class AutoHandle {
1334 AutoHandle() : handle_(INVALID_HANDLE_VALUE) {}
1335 explicit AutoHandle(HANDLE handle) : handle_(handle) {}
1337 ~AutoHandle() { Reset(); }
1352 GTEST_DISALLOW_COPY_AND_ASSIGN_(AutoHandle);