Lines Matching refs:ScopedWSAEVENT
444 class ScopedWSAEVENT { class
446 ScopedWSAEVENT() = default;
447 ScopedWSAEVENT(WSAEVENT event) { reset(event); } in ScopedWSAEVENT() function in ScopedWSAEVENT
448 ScopedWSAEVENT(const ScopedWSAEVENT &) = delete;
449 ScopedWSAEVENT(ScopedWSAEVENT &&other) { *this = std::move(other); } in ScopedWSAEVENT() function in ScopedWSAEVENT
451 ~ScopedWSAEVENT() { reset(); } in ~ScopedWSAEVENT()
453 ScopedWSAEVENT &operator=(const ScopedWSAEVENT &) = delete;
454 ScopedWSAEVENT &operator=(ScopedWSAEVENT &&other) { in operator =()
543 ScopedWSAEVENT sock_read_event(WSACreateEvent()); in Wait()
552 ScopedWSAEVENT sock_write_event; in Wait()
627 ScopedWSAEVENT event;