Searched refs:handle_ (Results 1 - 1 of 1) sorted by relevance

/openjdk10/test/fmw/gtest/src/
H A Dgtest-internal-inl.h975 AutoHandle() : handle_(INVALID_HANDLE_VALUE) {}
976 explicit AutoHandle(HANDLE handle) : handle_(handle) {}
980 HANDLE Get() const { return handle_; }
983 if (handle != handle_) {
984 if (handle_ != INVALID_HANDLE_VALUE)
985 ::CloseHandle(handle_);
986 handle_ = handle;
991 HANDLE handle_; member in class:testing::internal::AutoHandle

Completed in 101 milliseconds