Home | History | Annotate | Download | only in src

Lines Matching refs:handle_

1162   AutoHandle() : handle_(INVALID_HANDLE_VALUE) {}
1163 explicit AutoHandle(HANDLE handle) : handle_(handle) {}
1167 HANDLE Get() const { return handle_; }
1170 if (handle != handle_) {
1171 if (handle_ != INVALID_HANDLE_VALUE)
1172 ::CloseHandle(handle_);
1173 handle_ = handle;
1178 HANDLE handle_;