/freebsd/contrib/ntp/sntp/libevent/ |
H A D | epoll.c | 200 if (epoll_ctl(epollop->epfd, EPOLL_CTL_ADD, fd, &epev) < 0) { in epoll_init() 290 if (epoll_ctl(epollop->epfd, op, ch->fd, &epev) == 0) { in epoll_apply_one_change() 302 if (epoll_ctl(epollop->epfd, EPOLL_CTL_ADD, ch->fd, &epev) == -1) { in epoll_apply_one_change() 323 if (epoll_ctl(epollop->epfd, EPOLL_CTL_MOD, ch->fd, &epev) == -1) { in epoll_apply_one_change()
|
H A D | epoll_sub.c | 52 epoll_ctl(int epfd, int op, int fd, struct epoll_event *event) in epoll_ctl() function
|
H A D | event-config.h.cmake | 102 /* Define to 1 if you have the `epoll_ctl' function. */
|
H A D | config.h.in | 53 /* Define to 1 if you have the `epoll_ctl' function. */
|
H A D | whatsnew-2.1.txt | 593 The logic for deciding which arguements to use with epoll_ctl() is now 595 branches. This should minimize epoll_ctl() calls and make the epoll
|
H A D | configure.ac | 611 AC_CHECK_FUNCS(epoll_ctl, [haveepoll=yes], )
|
H A D | CMakeLists.txt | 478 epoll_ctl
|
H A D | ChangeLog-2.0 | 885 o Minimize epoll_ctl calls by using changelist (c8c6a89)
|
H A D | ChangeLog | 480 … o http: avoid epoll_ctl() on already closed fd (triggers by http/chunk_out) (ab3bc69 Azat Khuzhin)
|
/freebsd/contrib/libevent/ |
H A D | epoll.c | 200 if (epoll_ctl(epollop->epfd, EPOLL_CTL_ADD, fd, &epev) < 0) { in epoll_init() 290 if (epoll_ctl(epollop->epfd, op, ch->fd, &epev) == 0) { in epoll_apply_one_change() 302 if (epoll_ctl(epollop->epfd, EPOLL_CTL_ADD, ch->fd, &epev) == -1) { in epoll_apply_one_change() 323 if (epoll_ctl(epollop->epfd, EPOLL_CTL_MOD, ch->fd, &epev) == -1) { in epoll_apply_one_change()
|
H A D | epoll_sub.c | 52 epoll_ctl(int epfd, int op, int fd, struct epoll_event *event) in epoll_ctl() function
|
H A D | event-config.h.cmake | 102 /* Define to 1 if you have the `epoll_ctl' function. */
|
H A D | config.h.in | 53 /* Define to 1 if you have the `epoll_ctl' function. */
|
H A D | whatsnew-2.1.txt | 593 The logic for deciding which arguements to use with epoll_ctl() is now 595 branches. This should minimize epoll_ctl() calls and make the epoll
|
H A D | configure.ac | 611 AC_CHECK_FUNCS(epoll_ctl, [haveepoll=yes], )
|
H A D | CMakeLists.txt | 478 epoll_ctl
|
H A D | ChangeLog-2.0 | 885 o Minimize epoll_ctl calls by using changelist (c8c6a89)
|
/freebsd/contrib/capsicum-test/ |
H A D | linux.cc | 297 EXPECT_NOTCAPABLE(epoll_ctl(cap_epoll_ro, EPOLL_CTL_ADD, sock_fds[0], &eev)); in FORK_TEST() 298 EXPECT_NOTCAPABLE(epoll_ctl(cap_epoll_wo, EPOLL_CTL_ADD, sock_fds[0], &eev)); in FORK_TEST() 299 EXPECT_NOTCAPABLE(epoll_ctl(cap_epoll_rw, EPOLL_CTL_ADD, sock_fds[0], &eev)); in FORK_TEST() 300 EXPECT_OK(epoll_ctl(cap_epoll_ctl, EPOLL_CTL_ADD, sock_fds[0], &eev)); in FORK_TEST() 302 EXPECT_NOTCAPABLE(epoll_ctl(cap_epoll_ro, EPOLL_CTL_MOD, sock_fds[0], &eev)); in FORK_TEST() 303 EXPECT_NOTCAPABLE(epoll_ctl(cap_epoll_wo, EPOLL_CTL_MOD, sock_fds[0], &eev)); in FORK_TEST() 304 EXPECT_NOTCAPABLE(epoll_ctl(cap_epoll_rw, EPOLL_CTL_MOD, sock_fds[0], &eev)); in FORK_TEST() 305 EXPECT_OK(epoll_ctl(cap_epoll_ctl, EPOLL_CTL_MOD, sock_fds[0], &eev)); in FORK_TEST() 315 EXPECT_NOTCAPABLE(epoll_ctl(cap_epoll_ro, EPOLL_CTL_DEL, sock_fds[0], &eev)); in FORK_TEST() 316 EXPECT_NOTCAPABLE(epoll_ctl(cap_epoll_wo, EPOLL_CTL_DEL, sock_fds[0], &eev)); in FORK_TEST() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/DirectoryWatcher/linux/ |
H A D | DirectoryWatcher-linux.cpp | 204 if (epoll_ctl(EpollFD, EPOLL_CTL_ADD, InotifyFD, &EventSpec) == -1) { in InotifyPollingLoop() 210 if (epoll_ctl(EpollFD, EPOLL_CTL_ADD, InotifyPollingStopSignal.FDRead, in InotifyPollingLoop()
|
/freebsd/contrib/wpa/src/utils/ |
H A D | eloop.c | 218 if (epoll_ctl(eloop.epollfd, EPOLL_CTL_ADD, sock, &ev) < 0) { in eloop_sock_queue() 413 if (epoll_ctl(eloop.epollfd, EPOLL_CTL_DEL, sock, NULL) < 0) { in eloop_sock_table_remove_sock()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/ |
H A D | tsan_interceptors_posix.cpp | 1968 TSAN_INTERCEPTOR(int, epoll_ctl, int epfd, int op, int fd, void *ev) { in TSAN_INTERCEPTOR() argument 1969 SCOPED_TSAN_INTERCEPTOR(epoll_ctl, epfd, op, fd, ev); in TSAN_INTERCEPTOR() 1978 int res = REAL(epoll_ctl)(epfd, op, fd, ev); in TSAN_INTERCEPTOR() 2027 TSAN_INTERCEPT(epoll_ctl); \
|
/freebsd/contrib/llvm-project/compiler-rt/lib/dfsan/ |
H A D | done_abilist.txt | 165 fun:epoll_ctl=discard
|
H A D | libc_ubuntu1404_abilist.txt | 1614 fun:epoll_ctl=uninstrumented
|
/freebsd/contrib/ofed/librdmacm/ |
H A D | rsocket.c | 944 epoll_ctl(qp->rs->epfd, EPOLL_CTL_DEL, in ds_free_qp() 1538 ret = epoll_ctl(rs->epfd, EPOLL_CTL_ADD, in ds_create_qp()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_common_syscalls.inc | 2109 PRE_SYSCALL(epoll_ctl)(long epfd, long op, long fd, void *event) {} 2111 POST_SYSCALL(epoll_ctl)(long res, long epfd, long op, long fd, void *event) {
|