Home
last modified time | relevance | path

Searched refs:maxevents (Results 1 - 14 of 14) sorted by relevance

/base/msdp/device_status/intention/common/epoll/include/
H A Depoll_manager.h43 int32_t Wait(struct epoll_event *events, int32_t maxevents);
44 int32_t WaitTimeout(struct epoll_event *events, int32_t maxevents, int32_t timeout);
/base/startup/init/services/loopevent/loop/
H A Dle_epoll.c120 int number = epoll_wait(epoll->epollFd, epoll->waitEvents, loop->maxevents, timeout); in RunLoop_()
145 LE_STATUS CreateEpollLoop(EventLoop **loop, uint32_t maxevents, uint32_t timeout) in CreateEpollLoop() argument
148 EventEpoll *epoll = (EventEpoll *)malloc(sizeof(EventEpoll) + sizeof(struct epoll_event) * (maxevents)); in CreateEpollLoop()
150 epoll->epollFd = epoll_create(maxevents); in CreateEpollLoop()
155 epoll->loop.maxevents = maxevents; in CreateEpollLoop()
H A Dle_loop.c53 static LE_STATUS CreateLoop_(EventLoop **loop, uint32_t maxevents, uint32_t timeout) in CreateLoop_() argument
56 LE_STATUS ret = CreateEpollLoop(loop, maxevents, timeout); in CreateLoop_()
59 (*loop)->maxevents = maxevents; in CreateLoop_()
H A Dle_epoll.h28 LE_STATUS CreateEpollLoop(EventLoop **loop, uint32_t maxevents, uint32_t timeout);
H A Dle_loop.h38 uint32_t maxevents; member
/base/msdp/device_status/intention/common/epoll/src/
H A Depoll_manager.cpp119 int32_t EpollManager::Wait(struct epoll_event *events, int32_t maxevents) in Wait() argument
121 return WaitTimeout(events, maxevents, -1); in Wait()
124 int32_t EpollManager::WaitTimeout(struct epoll_event *events, int32_t maxevents, int32_t timeout) in WaitTimeout() argument
126 int32_t ret = ::epoll_wait(epollFd_, events, maxevents, timeout); in WaitTimeout()
/base/msdp/device_status/utils/ipc/src/
H A Dstream_socket.cpp63 int32_t StreamSocket::EpollWait(int32_t maxevents, int32_t timeout, struct epoll_event &events) in EpollWait() argument
69 return epoll_wait(epollFd_, &events, maxevents, timeout); in EpollWait()
/base/msdp/device_status/utils/ipc/include/
H A Dstream_socket.h47 int32_t EpollWait(int32_t maxevents, int32_t timeout, struct epoll_event &events);
/base/msdp/device_status/test/unittest/intention/services/include/
H A Ddevice_manager_test.h80 int32_t EpollWait(int32_t maxevents, int32_t timeout, struct epoll_event &events);
/base/msdp/device_status/test/unittest/intention/scheduler/include/
H A Dtimer_manager_test.h78 int32_t EpollWait(int32_t maxevents, int32_t timeout, struct epoll_event &events);
/base/msdp/device_status/test/fuzztest/msdpdevicemanager_fuzzer/
H A Dmsdpdevicemanager_fuzzer.h80 int32_t EpollWait(int32_t maxevents, int32_t timeout, struct epoll_event &events);
H A Dmsdpdevicemanager_fuzzer.cpp269 int32_t ContextService::EpollWait(int32_t maxevents, int32_t timeout, struct epoll_event &events) in EpollWait() argument
275 return epoll_wait(epollFd_, &events, maxevents, timeout); in EpollWait()
/base/msdp/device_status/test/unittest/intention/services/src/
H A Ddevice_manager_test.cpp271 int32_t ContextService::EpollWait(int32_t maxevents, int32_t timeout, struct epoll_event &events) in EpollWait() argument
277 return epoll_wait(epollFd_, &events, maxevents, timeout); in EpollWait()
/base/msdp/device_status/test/unittest/intention/scheduler/src/
H A Dtimer_manager_test.cpp262 int32_t ContextService::EpollWait(int32_t maxevents, int32_t timeout, struct epoll_event &events) in EpollWait() argument
268 return epoll_wait(epollFd_, &events, maxevents, timeout); in EpollWait()

Completed in 6 milliseconds