Home
last modified time | relevance | path

Searched refs:handle_ (Results 1 – 1 of 1) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/googletest/src/src/
Dgtest-all.cc1376 AutoHandle() : handle_(INVALID_HANDLE_VALUE) {} in AutoHandle()
1377 explicit AutoHandle(HANDLE handle) : handle_(handle) {} in AutoHandle()
1381 HANDLE Get() const { return handle_; } in Get()
1384 if (handle != handle_) { in Reset()
1385 if (handle_ != INVALID_HANDLE_VALUE) in Reset()
1386 ::CloseHandle(handle_); in Reset()
1387 handle_ = handle; in Reset()
1392 HANDLE handle_; member in testing::internal::AutoHandle