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 { argument
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.rs60 pub(crate) fn select(&self, events: &mut Events, timeout: Option<Duration>) -> io::Result<()> { in select()
116 fn select(&self, events: &mut Events, timeout: Option<Duration>) -> io::Result<()> { in select()
133 fn select_inner(&self, events: &mut Events, timeout: Option<Duration>) -> io::Result<usize> { in select_inner()
/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/sys/linux/
Devents.rs17 pub type Events = Vec<Event>; typedef
Depoll.rs53 pub fn select(&self, events: &mut Events, timeout: Option<Duration>) -> io::Result<()> { in select()
/commonlibrary/rust/ylong_runtime/ylong_io/src/
Dpoll.rs37 pub fn poll(&self, events: &mut Events, timeout: Option<Duration>) -> io::Result<()> { in poll()