Home | History | Annotate | Download | only in src

Lines Matching defs:handle_

986   AutoHandle() : handle_(INVALID_HANDLE_VALUE) {}
987 explicit AutoHandle(HANDLE handle) : handle_(handle) {}
991 HANDLE Get() const { return handle_; }
994 if (handle != handle_) {
995 if (handle_ != INVALID_HANDLE_VALUE)
996 ::CloseHandle(handle_);
997 handle_ = handle;
1002 HANDLE handle_;