Home
last modified time | relevance | path

Searched defs:Events (Results 1 – 7 of 7) sorted by relevance

/commonlibrary/rust/ylong_runtime/ylong_io/src/sys/windows/
Devents.rs58 pub struct Events { struct
63 impl Events { implementation
65 pub fn with_capacity(cap: usize) -> Events { in with_capacity()
100 impl fmt::Debug for Events { implementation
106 impl<'a> IntoIterator for &'a Events { implementation
Dselector.rs57 pub(crate) fn select(&self, events: &mut Events, timeout: Option<Duration>) -> io::Result<()> { in select()
104 fn select(&self, events: &mut Events, timeout: Option<Duration>) -> io::Result<()> { in select()
121 fn select_inner(&self, events: &mut Events, timeout: Option<Duration>) -> io::Result<usize> { in select_inner()
/commonlibrary/rust/ylong_runtime/ylong_io/src/sys/unix/
Dkqueue.rs47 pub fn select(&self, events: &mut Events, timeout: Option<Duration>) -> io::Result<()> { in select()
220 pub struct Events(Vec<Event>); struct
222 impl Events { impl
229 impl Deref for Events { implementation
237 impl DerefMut for Events { implementation
245 unsafe impl Send for Events {} implementation
246 unsafe impl Sync for Events {} implementation
Depoll.rs54 pub fn select(&self, events: &mut Events, timeout: Option<Duration>) -> io::Result<()> { in select()
130 pub type Events = Vec<Event>; typedef
/commonlibrary/c_utils/docs/zh-cn/
Dc_utils_guide_event.md97 #### 描
106 #### 属
/commonlibrary/c_utils/base/src/
Devent_handler.h43 uint32_t Events() const { return (events_); } in Events() function
/commonlibrary/rust/ylong_runtime/ylong_io/src/
Dpoll.rs37 pub fn poll(&self, events: &mut Events, timeout: Option<Duration>) -> io::Result<()> { in poll()