Home
last modified time | relevance | path

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

/foundation/multimodalinput/input/util/socket/test/
Duds_socket_test.cpp98 struct epoll_event events[MAX_EVENT_SIZE] = {};
102 int32_t retResult = socObj.EpollWait(*events, MAX_EVENT_SIZE, timeout);
108 struct epoll_event events[MAX_EVENT_SIZE] = {};
112 int32_t retResult = socObj.EpollWait(*events, MAX_EVENT_SIZE, timeout);
118 struct epoll_event events[MAX_EVENT_SIZE] = {};
122 int32_t retResult = socObj.EpollWait(*events, MAX_EVENT_SIZE, timeout);
128 struct epoll_event events[MAX_EVENT_SIZE] = {};
132 int32_t retResult = socObj.EpollWait(*events, MAX_EVENT_SIZE, timeout);
/foundation/graphic/wms/services/ims/
Dinput_manager_service.cpp66 while (eventQueue_.size() == MAX_EVENT_SIZE) { in ReadCallback()
85 int32_t len = (eventQueue_.size() > MAX_EVENT_SIZE) ? MAX_EVENT_SIZE : eventQueue_.size(); in Distribute()
/foundation/multimodalinput/input/util/common/include/
Dconfig_multimodal.h44 #define MAX_EVENT_SIZE 100 // Epoll create maximum event size macro
/foundation/graphic/utils/interfaces/kits/gfx_utils/
Dinput_event_info.h23 const static uint8_t MAX_EVENT_SIZE = 10; variable
/foundation/multimodalinput/input/service/module_loader/src/
Dmmi_service.cpp204 if (EpollCreat(MAX_EVENT_SIZE) < 0) { in InitService()
253 mmiFd_ = EpollCreat(MAX_EVENT_SIZE); in Init()
933 epoll_event ev[MAX_EVENT_SIZE] = {}; in OnThread()
936 int32_t count = EpollWait(ev[0], MAX_EVENT_SIZE, timeout, mmiFd_); in OnThread()