Home | History | Annotate | Download | only in src

Lines Matching refs:handle_

962   AutoHandle() : handle_(INVALID_HANDLE_VALUE) {}
963 explicit AutoHandle(HANDLE handle) : handle_(handle) {}
967 HANDLE Get() const { return handle_; }
970 if (handle != handle_) {
971 if (handle_ != INVALID_HANDLE_VALUE)
972 ::CloseHandle(handle_);
973 handle_ = handle;
978 HANDLE handle_;