Home | History | Annotate | Download | only in src

Lines Matching refs:handle_

1166   AutoHandle() : handle_(INVALID_HANDLE_VALUE) {}
1167 explicit AutoHandle(HANDLE handle) : handle_(handle) {}
1171 HANDLE Get() const { return handle_; }
1174 if (handle != handle_) {
1175 if (handle_ != INVALID_HANDLE_VALUE)
1176 ::CloseHandle(handle_);
1177 handle_ = handle;
1182 HANDLE handle_;