Searched refs:epfd (Results 1 - 17 of 17) sorted by relevance

/external/chromium/third_party/libevent/
H A Depoll_sub.c42 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 Depoll.c69 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...]
H A Dconfigure22221 int epfd;
22223 epfd = epoll_create(256);
22224 exit (epfd == -1 ? 1 : 0);
/external/chromium_org/third_party/libevent/
H A Depoll_sub.c42 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 Depoll.c69 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...]
H A Dconfigure22221 int epfd;
22223 epfd = epoll_create(256);
22224 exit (epfd == -1 ? 1 : 0);
/external/chromium_org/net/tools/quic/test_tools/
H A Dmock_epoll_server.cc27 int MockEpollServer::epoll_wait_impl(int epfd, argument
H A Dmock_epoll_server.h91 virtual int epoll_wait_impl(int epfd,
/external/chromium_org/third_party/gpsd/release-3.1/
H A Dgps.h918 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
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors.cc1580 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/net/tools/flip_server/
H A Depoll_server.cc251 int EpollServer::epoll_wait_impl(int epfd, argument
255 return epoll_wait(epfd, events, max_events, timeout_in_ms);
H A Depoll_server.h504 virtual int epoll_wait_impl(int epfd,
/external/chromium_org/net/tools/flip_server/
H A Depoll_server.cc252 int EpollServer::epoll_wait_impl(int epfd, argument
256 return epoll_wait(epfd, events, max_events, timeout_in_ms);
H A Depoll_server.h499 virtual int epoll_wait_impl(int epfd,
/external/compiler-rt/lib/msan/
H A Dmsan_interceptors.cc721 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/valgrind/main/coregrind/m_syswrap/
H A Dsyswrap-linux.c1242 int, epfd, int, op, int, fd, struct vki_epoll_event *, event);
1252 int, epfd, struct vki_epoll_event *, events,
1268 int, epfd, struct vki_epoll_event *, events,
/external/valgrind/main/memcheck/tests/x86-linux/
H A Dscalar.stderr.exp3535 Syscall param epoll_ctl(epfd) contains uninitialised byte(s)
3559 Syscall param epoll_wait(epfd) contains uninitialised byte(s)

Completed in 1095 milliseconds