Searched defs:ScopedHandle (Results 1 – 5 of 5) sorted by relevance
183 struct ScopedHandle { struct184 ScopedHandle() : h_(nullptr) {} in ScopedHandle() function185 explicit ScopedHandle(HANDLE h) : h_(h) {} in ScopedHandle() argument186 ~ScopedHandle() { in ~ScopedHandle()190 HANDLE get() { return h_; } in get()191 HANDLE *receive() { return &h_; } in receive()192 HANDLE release() { in release()197 HANDLE h_;
223 struct ScopedHandle { in CrashHandler() struct224 ~ScopedHandle() { _zx_handle_close(Handle); } in CrashHandler()225 zx_handle_t Handle = ZX_HANDLE_INVALID; in CrashHandler()
78 class ScopedHandle { class84 ScopedHandle() in ScopedHandle() function in __anon8e01e2600111::ScopedHandle87 explicit ScopedHandle(handle_type handle) in ScopedHandle() function in __anon8e01e2600111::ScopedHandle
88 ScopedHandle() in ScopedHandle() function91 explicit ScopedHandle(handle_type h) in ScopedHandle() function
73 ScopedCryptContext ScopedHandle(hProvider); in getRandomBytes() local