/external/chromium/third_party/libevent/ |
H A D | epoll_sub.c | 42 epoll_ctl(int epfd, int op, int fd, struct epoll_event *event) argument 45 return (syscall(__NR_epoll_ctl, epfd, op, fd, event)); 49 epoll_wait(int epfd, struct epoll_event *events, int maxevents, int timeout) argument 51 return (syscall(__NR_epoll_wait, epfd, events, maxevents, timeout));
|
H A D | epoll.c | 69 int epfd; member in struct:epollop 112 int epfd; local 120 if ((epfd = epoll_create(32000)) == -1) { 126 FD_CLOSEONEXEC(epfd); 131 epollop->epfd = epfd; 198 res = epoll_wait(epollop->epfd, events, epollop->nevents, timeout); 299 if (epoll_ctl(epollop->epfd, op, ev->ev_fd, &epev) == -1) 356 if (epoll_ctl(epollop->epfd, op, fd, &epev) == -1) 372 if (epollop->epfd > [all...] |
/external/chromium_org/third_party/libevent/ |
H A D | epoll_sub.c | 42 epoll_ctl(int epfd, int op, int fd, struct epoll_event *event) argument 45 return (syscall(__NR_epoll_ctl, epfd, op, fd, event)); 49 epoll_wait(int epfd, struct epoll_event *events, int maxevents, int timeout) argument 51 return (syscall(__NR_epoll_wait, epfd, events, maxevents, timeout));
|
H A D | epoll.c | 69 int epfd; member in struct:epollop 112 int epfd; local 120 if ((epfd = epoll_create(32000)) == -1) { 126 FD_CLOSEONEXEC(epfd); 131 epollop->epfd = epfd; 198 res = epoll_wait(epollop->epfd, events, epollop->nevents, timeout); 299 if (epoll_ctl(epollop->epfd, op, ev->ev_fd, &epev) == -1) 356 if (epoll_ctl(epollop->epfd, op, fd, &epev) == -1) 372 if (epollop->epfd > [all...] |
/external/chromium_org/net/tools/quic/test_tools/ |
H A D | mock_epoll_server.cc | 27 int MockEpollServer::epoll_wait_impl(int epfd, argument
|
/external/chromium/net/tools/flip_server/ |
H A D | epoll_server.cc | 251 int EpollServer::epoll_wait_impl(int epfd, argument 255 return epoll_wait(epfd, events, max_events, timeout_in_ms);
|
/external/chromium_org/net/tools/flip_server/ |
H A D | epoll_server.cc | 252 int EpollServer::epoll_wait_impl(int epfd, argument 256 return epoll_wait(epfd, events, max_events, timeout_in_ms);
|
/external/compiler-rt/lib/msan/ |
H A D | msan_interceptors.cc | 721 INTERCEPTOR(int, epoll_wait, int epfd, void *events, int maxevents, argument 724 int res = REAL(epoll_wait)(epfd, events, maxevents, timeout); 731 INTERCEPTOR(int, epoll_pwait, int epfd, void *events, int maxevents, argument 734 int res = REAL(epoll_pwait)(epfd, events, maxevents, timeout, sigmask);
|
/external/compiler-rt/lib/tsan/rtl/ |
H A D | tsan_interceptors.cc | 1580 TSAN_INTERCEPTOR(int, epoll_ctl, int epfd, int op, int fd, void *ev) { argument 1581 SCOPED_TSAN_INTERCEPTOR(epoll_ctl, epfd, op, fd, ev); 1582 if (op == EPOLL_CTL_ADD && epfd >= 0) { 1583 FdRelease(thr, pc, epfd); 1585 int res = REAL(epoll_ctl)(epfd, op, fd, ev); 1591 TSAN_INTERCEPTOR(int, epoll_wait, int epfd, void *ev, int cnt, int timeout) { argument 1592 SCOPED_TSAN_INTERCEPTOR(epoll_wait, epfd, ev, cnt, timeout); 1593 int res = BLOCK_REAL(epoll_wait)(epfd, ev, cnt, timeout); 1594 if (res > 0 && epfd >= 0) { 1595 FdAcquire(thr, pc, epfd); [all...] |
/external/chromium_org/third_party/gpsd/release-3.1/ |
H A D | gps.h | 918 unsigned int epfd; /* type of position fix device */ member in struct:ais_t::__anon10694::__anon10696 935 unsigned int epfd; /* type of position fix deviuce */ member in struct:ais_t::__anon10694::__anon10697 1348 unsigned int epfd; /* type of position fix deviuce */ member in struct:ais_t::__anon10694::__anon10725 1385 unsigned int epfd; /* type of EPFD */ member in struct:ais_t::__anon10694::__anon10727
|