Home
last modified time | relevance | path

Searched refs:evs (Results 1 - 3 of 3) sorted by relevance

/base/msdp/device_status/test/unittest/intention/common/src/
H A Depoll_manager_test.cpp291 struct epoll_event evs[MAX_N_EVENTS] {}; in HWTEST_F() struct
292 EXPECT_GE(epollMgr.WaitTimeout(evs, MAX_N_EVENTS, TIMEOUT), 0); in HWTEST_F()
306 struct epoll_event evs[MAX_N_EVENTS]; in HWTEST_F() local
307 EXPECT_GE(epollMgr.WaitTimeout(evs, MAX_N_EVENTS, TIMEOUT), 0); in HWTEST_F()
325 struct epoll_event evs[MAX_N_EVENTS]; in HWTEST_F() local
326 EXPECT_GE(epollMgr.WaitTimeout(evs, MAX_N_EVENTS, BLOCK_EPOLL), 0); in HWTEST_F()
343 struct epoll_event evs[MAX_N_EVENTS]; in HWTEST_F() local
344 EXPECT_GE(epollMgr.WaitTimeout(evs, MAX_N_EVENTS, UNBLOCK_EPOLL), 0); in HWTEST_F()
361 struct epoll_event evs[MAX_N_EVENTS]; in HWTEST_F() local
362 EXPECT_GE(epollMgr.WaitTimeout(evs, MAX_N_EVENT in HWTEST_F()
379 struct epoll_event evs[MAX_N_EVENTS]; HWTEST_F() local
398 struct epoll_event evs[MAX_N_EVENTS]; HWTEST_F() local
[all...]
/base/msdp/device_status/intention/common/epoll/src/
H A Depoll_manager.cpp147 struct epoll_event evs[MAX_N_EVENTS]; in DispatchOne() local
148 int32_t cnt = WaitTimeout(evs, MAX_N_EVENTS, 0); in DispatchOne()
151 IEpollEventSource *source = reinterpret_cast<IEpollEventSource *>(evs[index].data.ptr); in DispatchOne()
153 if ((evs[index].events & EPOLLIN) == EPOLLIN) { in DispatchOne()
154 source->Dispatch(evs[index]); in DispatchOne()
155 } else if ((evs[index].events & (EPOLLHUP | EPOLLERR)) != 0) { in DispatchOne()
/base/msdp/device_status/intention/ipc/socket/src/
H A Dsocket_session_manager.cpp159 struct epoll_event evs[MAX_EPOLL_EVENTS]; in DispatchOne() local
161 int32_t cnt = epollMgr_.WaitTimeout(evs, MAX_EPOLL_EVENTS, 0); in DispatchOne()
164 IEpollEventSource *source = reinterpret_cast<IEpollEventSource *>(evs[index].data.ptr); in DispatchOne()
166 if ((evs[index].events & EPOLLIN) == EPOLLIN) { in DispatchOne()
168 } else if ((evs[index].events & (EPOLLHUP | EPOLLERR)) != 0) { in DispatchOne()

Completed in 3 milliseconds