Home | History | Annotate | Download | only in src

Lines Matching refs:handle_

944   AutoHandle() : handle_(INVALID_HANDLE_VALUE) {}
945 explicit AutoHandle(HANDLE handle) : handle_(handle) {}
949 HANDLE Get() const { return handle_; }
952 if (handle != handle_) {
953 if (handle_ != INVALID_HANDLE_VALUE)
954 ::CloseHandle(handle_);
955 handle_ = handle;
960 HANDLE handle_;