Searched defs:epollEvents (Results 1 - 1 of 1) sorted by relevance

/frameworks/native/libs/utils/
H A DLooper.cpp249 uint32_t epollEvents = eventItems[i].events; local
251 if (epollEvents & EPOLLIN) {
254 ALOGW("Ignoring unexpected epoll events 0x%x on wake read pipe.", epollEvents);
260 if (epollEvents & EPOLLIN) events |= ALOOPER_EVENT_INPUT;
261 if (epollEvents & EPOLLOUT) events |= ALOOPER_EVENT_OUTPUT;
262 if (epollEvents & EPOLLERR) events |= ALOOPER_EVENT_ERROR;
263 if (epollEvents & EPOLLHUP) events |= ALOOPER_EVENT_HANGUP;
267 "no longer registered.", epollEvents, fd);
420 int epollEvents = 0; local
421 if (events & ALOOPER_EVENT_INPUT) epollEvents |
[all...]

Completed in 654 milliseconds