/external/chromium/third_party/libevent/ |
epoll_sub.c | 42 epoll_ctl(int epfd, int op, int fd, struct epoll_event *event) 45 return (syscall(__NR_epoll_ctl, epfd, op, fd, event)); 49 epoll_wait(int epfd, struct epoll_event *events, int maxevents, int timeout) 51 return (syscall(__NR_epoll_wait, epfd, events, maxevents, timeout));
|
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 >= 0 [all...] |
/bionic/libc/include/sys/ |
epoll.h | 66 int epoll_ctl(int epfd, int op, int fd, struct epoll_event *event); 67 int epoll_wait(int epfd, struct epoll_event *events, int max, int timeout);
|
linux-unistd.h | 204 int epoll_ctl (int epfd, int op, int fd, struct epoll_event *event); 205 int epoll_wait (int epfd, struct epoll_event *events, int max, int timeout);
|
/development/ndk/platforms/android-3/include/sys/ |
epoll.h | 66 int epoll_ctl(int epfd, int op, int fd, struct epoll_event *event); 67 int epoll_wait(int epfd, struct epoll_event *events, int max, int timeout);
|
linux-unistd.h | 192 int epoll_ctl (int epfd, int op, int fd, struct epoll_event *event); 193 int epoll_wait (int epfd, struct epoll_event *events, int max, int timeout);
|
/prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/sys/ |
epoll.h | 66 int epoll_ctl(int epfd, int op, int fd, struct epoll_event *event); 67 int epoll_wait(int epfd, struct epoll_event *events, int max, int timeout);
|
linux-unistd.h | 192 int epoll_ctl (int epfd, int op, int fd, struct epoll_event *event); 193 int epoll_wait (int epfd, struct epoll_event *events, int max, int timeout);
|
/prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/sys/ |
epoll.h | 66 int epoll_ctl(int epfd, int op, int fd, struct epoll_event *event); 67 int epoll_wait(int epfd, struct epoll_event *events, int max, int timeout);
|
linux-unistd.h | 192 int epoll_ctl (int epfd, int op, int fd, struct epoll_event *event); 193 int epoll_wait (int epfd, struct epoll_event *events, int max, int timeout);
|
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/sys/ |
epoll.h | 66 int epoll_ctl(int epfd, int op, int fd, struct epoll_event *event); 67 int epoll_wait(int epfd, struct epoll_event *events, int max, int timeout);
|
linux-unistd.h | 192 int epoll_ctl (int epfd, int op, int fd, struct epoll_event *event); 193 int epoll_wait (int epfd, struct epoll_event *events, int max, int timeout);
|
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/sys/ |
epoll.h | 66 int epoll_ctl(int epfd, int op, int fd, struct epoll_event *event); 67 int epoll_wait(int epfd, struct epoll_event *events, int max, int timeout);
|
linux-unistd.h | 192 int epoll_ctl (int epfd, int op, int fd, struct epoll_event *event); 193 int epoll_wait (int epfd, struct epoll_event *events, int max, int timeout);
|
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/sys/ |
epoll.h | 66 int epoll_ctl(int epfd, int op, int fd, struct epoll_event *event); 67 int epoll_wait(int epfd, struct epoll_event *events, int max, int timeout);
|
linux-unistd.h | 192 int epoll_ctl (int epfd, int op, int fd, struct epoll_event *event); 193 int epoll_wait (int epfd, struct epoll_event *events, int max, int timeout);
|
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/sys/ |
epoll.h | 66 int epoll_ctl(int epfd, int op, int fd, struct epoll_event *event); 67 int epoll_wait(int epfd, struct epoll_event *events, int max, int timeout);
|
linux-unistd.h | 192 int epoll_ctl (int epfd, int op, int fd, struct epoll_event *event); 193 int epoll_wait (int epfd, struct epoll_event *events, int max, int timeout);
|
/prebuilt/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/sys/ |
epoll.h | 66 int epoll_ctl(int epfd, int op, int fd, struct epoll_event *event); 67 int epoll_wait(int epfd, struct epoll_event *events, int max, int timeout);
|
linux-unistd.h | 192 int epoll_ctl (int epfd, int op, int fd, struct epoll_event *event); 193 int epoll_wait (int epfd, struct epoll_event *events, int max, int timeout);
|
/prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/sys/ |
epoll.h | 66 int epoll_ctl(int epfd, int op, int fd, struct epoll_event *event); 67 int epoll_wait(int epfd, struct epoll_event *events, int max, int timeout);
|
linux-unistd.h | 192 int epoll_ctl (int epfd, int op, int fd, struct epoll_event *event); 193 int epoll_wait (int epfd, struct epoll_event *events, int max, int timeout);
|
/prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-x86/usr/include/sys/ |
epoll.h | 66 int epoll_ctl(int epfd, int op, int fd, struct epoll_event *event); 67 int epoll_wait(int epfd, struct epoll_event *events, int max, int timeout);
|
/development/ndk/platforms/android-9/include/sys/ |
linux-unistd.h | 199 int epoll_ctl (int epfd, int op, int fd, struct epoll_event *event); 200 int epoll_wait (int epfd, struct epoll_event *events, int max, int timeout);
|
/prebuilt/ndk/android-ndk-r5/platforms/android-9/arch-arm/usr/include/sys/ |
linux-unistd.h | 199 int epoll_ctl (int epfd, int op, int fd, struct epoll_event *event); 200 int epoll_wait (int epfd, struct epoll_event *events, int max, int timeout);
|