Lines Matching refs:HANDLE
54 // Create a WaitableEvent from an Event HANDLE which has already been
55 // created. This objects takes ownership of the HANDLE and will close it when
57 explicit WaitableEvent(HANDLE event_handle);
59 // Releases ownership of the handle from this object.
60 HANDLE Release();
86 HANDLE handle() const { return handle_; }
124 // comments in ~Handle for why.
135 HANDLE handle_;
137 // On Windows, one can close a HANDLE which is currently being waited on. The