Home | History | Annotate | Download | only in src

Lines Matching refs:handle_

969   AutoHandle() : handle_(INVALID_HANDLE_VALUE) {}
970 explicit AutoHandle(HANDLE handle) : handle_(handle) {}
974 HANDLE Get() const { return handle_; }
977 if (handle != handle_) {
978 if (handle_ != INVALID_HANDLE_VALUE)
979 ::CloseHandle(handle_);
980 handle_ = handle;
985 HANDLE handle_;