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