Home | History | Annotate | Download | only in src

Lines Matching refs:handle_

937   AutoHandle() : handle_(INVALID_HANDLE_VALUE) {}
938 explicit AutoHandle(HANDLE handle) : handle_(handle) {}
942 HANDLE Get() const { return handle_; }
945 if (handle != handle_) {
946 if (handle_ != INVALID_HANDLE_VALUE)
947 ::CloseHandle(handle_);
948 handle_ = handle;
953 HANDLE handle_;