Home
last modified time | relevance | path

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

/third_party/gn/src/base/win/
Dscoped_handle.h35 class GenericScopedHandle {
39 GenericScopedHandle() : handle_(Traits::NullHandle()) {} in GenericScopedHandle() function
41 explicit GenericScopedHandle(Handle handle) : handle_(Traits::NullHandle()) { in GenericScopedHandle() function
45 GenericScopedHandle(GenericScopedHandle&& other) in GenericScopedHandle() function
50 ~GenericScopedHandle() { Close(); } in ~GenericScopedHandle()
54 GenericScopedHandle& operator=(GenericScopedHandle&& other) {
95 GenericScopedHandle(const GenericScopedHandle&) = delete;
96 GenericScopedHandle& operator=(const GenericScopedHandle&) = delete;
163 typedef GenericScopedHandle<HandleTraits, VerifierTraits> ScopedHandle;