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