Home | History | Annotate | Download | only in internal

Lines Matching refs:handle_

943   AutoHandle() : handle_(INVALID_HANDLE_VALUE) {}
944 explicit AutoHandle(HANDLE handle) : handle_(handle) {}
948 HANDLE Get() const { return handle_; }
951 if (handle != handle_) {
952 if (handle_ != INVALID_HANDLE_VALUE)
953 ::CloseHandle(handle_);
954 handle_ = handle;
959 HANDLE handle_;