/base/msdp/device_status/intention/common/epoll/include/ |
H A D | epoll_manager.h | 43 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 D | le_epoll.c | 120 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 D | le_loop.c | 53 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 D | le_epoll.h | 28 LE_STATUS CreateEpollLoop(EventLoop **loop, uint32_t maxevents, uint32_t timeout);
|
H A D | le_loop.h | 38 uint32_t maxevents;
member
|
/base/msdp/device_status/intention/common/epoll/src/ |
H A D | epoll_manager.cpp | 119 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 D | stream_socket.cpp | 63 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 D | stream_socket.h | 47 int32_t EpollWait(int32_t maxevents, int32_t timeout, struct epoll_event &events);
|
/base/msdp/device_status/test/unittest/intention/services/include/ |
H A D | device_manager_test.h | 80 int32_t EpollWait(int32_t maxevents, int32_t timeout, struct epoll_event &events);
|
/base/msdp/device_status/test/unittest/intention/scheduler/include/ |
H A D | timer_manager_test.h | 78 int32_t EpollWait(int32_t maxevents, int32_t timeout, struct epoll_event &events);
|
/base/msdp/device_status/test/fuzztest/msdpdevicemanager_fuzzer/ |
H A D | msdpdevicemanager_fuzzer.h | 80 int32_t EpollWait(int32_t maxevents, int32_t timeout, struct epoll_event &events);
|
H A D | msdpdevicemanager_fuzzer.cpp | 269 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 D | device_manager_test.cpp | 271 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 D | timer_manager_test.cpp | 262 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()
|