Home
last modified time | relevance | path

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

/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/net/
H A Dready.rs20 const READ_CLOSED: usize = 0b0_0100; const
43 pub const READ_CLOSED: Ready = Ready(READ_CLOSED); const
47 pub const ALL: Ready = Ready(READABLE | WRITABLE | READ_CLOSED | WRITE_CLOSED);
62 ready |= Ready::READ_CLOSED; in from_event()
84 (self & Ready::READ_CLOSED).0 != 0 in is_read_closed()
104 ready |= Ready::READ_CLOSED; in from_interest()
206 ready |= Ready::READ_CLOSED;
H A Dschedule_io.rs184 let mask_no_closed = ready.get_ready() - Ready::READ_CLOSED - Ready::WRITE_CLOSED; in clear_readiness()