Lines Matching refs:HANDLE
632 // Returns EXCEPTION_EXECUTE_HANDLER if Google Test should handle the
1159 // Provides leak-safe Windows kernel handle ownership.
1163 explicit AutoHandle(HANDLE handle) : handle_(handle) {}
1167 HANDLE Get() const { return handle_; }
1169 void Reset(HANDLE handle) {
1170 if (handle != handle_) {
1173 handle_ = handle;
1178 HANDLE handle_;