Home
last modified time | relevance | path

Searched refs:READ_CLOSED (Results 1 – 4 of 4) sorted by relevance

/external/rust/crates/tokio/src/io/driver/
Dready.rs8 const READ_CLOSED: usize = 0b0_0100; constant
29 pub const READ_CLOSED: Ready = Ready(READ_CLOSED); constant
35 pub const ALL: Ready = Ready(READABLE | WRITABLE | READ_CLOSED | WRITE_CLOSED);
50 ready |= Ready::READ_CLOSED; in from_mio()
118 self.contains(Ready::READ_CLOSED) in is_read_closed()
175 ready |= Ready::READ_CLOSED;
Dinterest.rs85 Interest::READABLE => Ready::READABLE | Ready::READ_CLOSED, in mask()
Dmod.rs349 Direction::Read => Ready::READABLE | Ready::READ_CLOSED, in mask()
Dscheduled_io.rs353 let mask_no_closed = event.ready - Ready::READ_CLOSED - Ready::WRITE_CLOSED; in clear_readiness()