Home
last modified time | relevance | path

Searched refs:EPOLLRDNORM (Results 1 – 5 of 5) sorted by relevance

/DragonOS/kernel/src/net/socket/
H A Dmod.rs819 EPollEventType::EPOLLIN | EPollEventType::EPOLLRDNORM | EPollEventType::EPOLLRDHUP, in tcp_poll()
827 events.insert(EPollEventType::EPOLLIN | EPollEventType::EPOLLRDNORM); in tcp_poll()
860 EPollEventType::EPOLLRDHUP | EPollEventType::EPOLLIN | EPollEventType::EPOLLRDNORM, in udp_poll()
868 event.insert(EPollEventType::EPOLLIN | EPollEventType::EPOLLRDNORM); in udp_poll()
891 EPollEventType::EPOLLRDHUP | EPollEventType::EPOLLIN | EPollEventType::EPOLLRDNORM, in raw_poll()
900 event.insert(EPollEventType::EPOLLIN | EPollEventType::EPOLLRDNORM); in raw_poll()
/DragonOS/kernel/src/filesystem/
H A Deventfd.rs197 events |= EPollEventType::EPOLLIN | EPollEventType::EPOLLRDNORM; in poll()
/DragonOS/kernel/src/driver/tty/tty_ldisc/
H A Dntty.rs507 (EPollEventType::EPOLLIN | EPollEventType::EPOLLRDNORM).bits() as u64, in receive_special_char()
520 (EPollEventType::EPOLLIN | EPollEventType::EPOLLRDNORM).bits() as u64, in receive_special_char()
548 (EPollEventType::EPOLLIN | EPollEventType::EPOLLRDNORM).bits() as u64, in receive_special_char()
1703 .sleep((EPollEventType::EPOLLIN | EPollEventType::EPOLLRDNORM).bits() as u64); in read()
2064 event.insert(EPollEventType::EPOLLIN | EPollEventType::EPOLLRDNORM) in poll()
2080 | EPollEventType::EPOLLRDNORM, in poll()
/DragonOS/kernel/src/net/event_poll/
H A Dmod.rs829 const EPOLLRDNORM = 0x00000040; constant
876 const EPOLL_LISTEN_CAN_ACCEPT = Self::EPOLLIN.bits | Self::EPOLLRDNORM.bits;
/DragonOS/kernel/src/ipc/
H A Dpipe.rs78 events.insert(EPollEventType::EPOLLIN & EPollEventType::EPOLLRDNORM); in poll()