Home | History | Annotate | Download | only in gtest

Lines Matching defs:handle_

1376   AutoHandle() : handle_(INVALID_HANDLE_VALUE) {}
1377 explicit AutoHandle(HANDLE handle) : handle_(handle) {}
1381 HANDLE Get() const { return handle_; }
1384 if (handle != handle_) {
1385 if (handle_ != INVALID_HANDLE_VALUE)
1386 ::CloseHandle(handle_);
1387 handle_ = handle;
1392 HANDLE handle_;