Lines Matching refs:HANDLE
386 // Returns EXCEPTION_EXECUTE_HANDLER if Google Test should handle the
934 // Provides leak-safe Windows kernel handle ownership.
938 explicit AutoHandle(HANDLE handle) : handle_(handle) {}
942 HANDLE Get() const { return handle_; }
944 void Reset(HANDLE handle) {
945 if (handle != handle_) {
948 handle_ = handle;
953 HANDLE handle_;