| 10019 | } |
| 10020 | |
| 10021 | bool AutoHandle::IsCloseable() const { |
| 10022 | // Different Windows APIs may use either of these values to represent an |
| 10023 | // invalid handle. |
| 10024 | return handle_ != nullptr && handle_ != INVALID_HANDLE_VALUE; |
| 10025 | } |
| 10026 | |
| 10027 | Notification::Notification() |
| 10028 | : event_(::CreateEvent(nullptr, // Default security attributes. |
nothing calls this directly
no outgoing calls
no test coverage detected