Home
last modified time | relevance | path

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

/ohos5.0/foundation/communication/netstack/utils/http_over_curl/src/
H A Depoll_multi_driver.cpp23 static constexpr size_t MAX_EPOLL_EVENTS = 10; variable
66 epoll_event events[MAX_EPOLL_EVENTS]; in Step()
67 int eventsToHandle = poller_.Wait(events, MAX_EPOLL_EVENTS, waitEventsTimeoutMs); in Step()
/ohos5.0/foundation/multimodalinput/input/intention/ipc/socket/src/
H A Dsocket_session_manager.cpp35 constexpr int32_t MAX_EPOLL_EVENTS { 64 }; variable
138 struct epoll_event evs[MAX_EPOLL_EVENTS]; in DispatchOne()
139 int32_t cnt = epollMgr_.WaitTimeout(evs, MAX_EPOLL_EVENTS, 0); in DispatchOne()
/ohos5.0/base/msdp/device_status/intention/ipc/socket/src/
H A Dsocket_session_manager.cpp35 constexpr int32_t MAX_EPOLL_EVENTS { 64 }; variable
142 struct epoll_event evs[MAX_EPOLL_EVENTS]; in DispatchOne()
143 int32_t cnt = epollMgr_.WaitTimeout(evs, MAX_EPOLL_EVENTS, 0); in DispatchOne()
/ohos5.0/base/msdp/device_status/rust/modules/scheduler/sys/src/
H A Dscheduler.rs42 const MAX_EPOLL_EVENTS: c_int = 128; const
220 let mut events: Vec<libc::epoll_event> = Vec::with_capacity(MAX_EPOLL_EVENTS as usize); in epoll_wait()
225 libc::epoll_wait(self.epoll_fd, events.as_mut_ptr(), MAX_EPOLL_EVENTS, NO_TIMEOUT) in epoll_wait()