HomeSort by: relevance | last modified time | path
    Searched refs:EPOLL_CTL_ADD (Results 1 - 25 of 26) sorted by relevancy

1 2

  /src/external/bsd/libevent/dist/
epolltable-internal.h 58 Set op to EPOLL_CTL_ADD [*3]
144 { EPOLLRDHUP, EPOLL_CTL_ADD },
150 { EPOLLIN, EPOLL_CTL_ADD },
152 { EPOLLIN|EPOLLRDHUP, EPOLL_CTL_ADD },
154 { EPOLLIN, EPOLL_CTL_ADD },
160 { EPOLLRDHUP, EPOLL_CTL_ADD },
174 { EPOLLOUT, EPOLL_CTL_ADD },
176 { EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_ADD },
178 { EPOLLOUT, EPOLL_CTL_ADD },
182 { EPOLLIN|EPOLLOUT, EPOLL_CTL_ADD },
    [all...]
epoll.c 203 if (epoll_ctl(epollop->epfd, EPOLL_CTL_ADD, fd, &epev) < 0) {
246 return op == EPOLL_CTL_ADD?"ADD":
305 if (epoll_ctl(epollop->epfd, EPOLL_CTL_ADD, ch->fd, &epev) == -1) {
317 case EPOLL_CTL_ADD:
  /src/external/bsd/ntp/dist/sntp/libevent/
epolltable-internal.h 59 Set op to EPOLL_CTL_ADD [*3]
145 { EPOLLRDHUP, EPOLL_CTL_ADD },
151 { EPOLLIN, EPOLL_CTL_ADD },
153 { EPOLLIN|EPOLLRDHUP, EPOLL_CTL_ADD },
155 { EPOLLIN, EPOLL_CTL_ADD },
161 { EPOLLRDHUP, EPOLL_CTL_ADD },
175 { EPOLLOUT, EPOLL_CTL_ADD },
177 { EPOLLOUT|EPOLLRDHUP, EPOLL_CTL_ADD },
179 { EPOLLOUT, EPOLL_CTL_ADD },
183 { EPOLLIN|EPOLLOUT, EPOLL_CTL_ADD },
    [all...]
epoll.c 202 if (epoll_ctl(epollop->epfd, EPOLL_CTL_ADD, fd, &epev) < 0) {
245 return op == EPOLL_CTL_ADD?"ADD":
304 if (epoll_ctl(epollop->epfd, EPOLL_CTL_ADD, ch->fd, &epev) == -1) {
316 case EPOLL_CTL_ADD:
  /src/tests/kernel/
t_epoll.c 99 ATF_REQUIRE_EQ_MSG(epoll_ctl(-1, EPOLL_CTL_ADD, fd, &event), -1,
119 ATF_REQUIRE_EQ_MSG(epoll_ctl(epfd, EPOLL_CTL_ADD, -1, &event), -1,
140 RL(epoll_ctl(epfd, EPOLL_CTL_ADD, fd, &event));
142 ATF_REQUIRE_EQ_MSG(epoll_ctl(epfd, EPOLL_CTL_ADD, fd, &event), -1,
185 ATF_REQUIRE_EQ_MSG(epoll_ctl(epfd, EPOLL_CTL_ADD, epfd, &event), -1,
204 RL(epoll_ctl(epfd1, EPOLL_CTL_ADD, epfd2, &event));
205 ATF_REQUIRE_EQ_MSG(epoll_ctl(epfd2, EPOLL_CTL_ADD, epfd1, &event), -1,
226 RL(epoll_ctl(tmp, EPOLL_CTL_ADD, epfd, &event));
230 ATF_REQUIRE_EQ_MSG(epoll_ctl(tmp, EPOLL_CTL_ADD, epfd, &event), -1,
  /src/sys/sys/
epoll.h 58 #define EPOLL_CTL_ADD 1
  /src/external/mit/libuv/dist/src/unix/
os390-syscalls.h 33 #define EPOLL_CTL_ADD 1
epoll.c 91 if (epoll_ctl(loop->backend_fd, EPOLL_CTL_ADD, fd, &e))
157 op = EPOLL_CTL_ADD;
168 assert(op == EPOLL_CTL_ADD);
linux.c 253 STATIC_ASSERT(EPOLL_CTL_ADD < 4);
589 if (epoll_ctl(epollfd, EPOLL_CTL_ADD, ringfd, &e))
744 if (epoll_ctl(loop->backend_fd, EPOLL_CTL_ADD, fd, &e))
1242 /* Only for EPOLL_CTL_ADD and EPOLL_CTL_MOD. EPOLL_CTL_DEL should always be
1257 assert(op == EPOLL_CTL_ADD || op == EPOLL_CTL_MOD);
1314 * that have been closed, or EPOLL_CTL_ADD commands for file descriptors
1334 if (op != EPOLL_CTL_ADD)
1414 op = EPOLL_CTL_ADD;
1429 assert(op == EPOLL_CTL_ADD);
os390-syscalls.c 249 } else if (op == EPOLL_CTL_ADD) {
os390.c 857 op = EPOLL_CTL_ADD;
868 assert(op == EPOLL_CTL_ADD);
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/linux/
epoll.d 67 EPOLL_CTL_ADD = 1, /// Add a file descriptor to the interface.
  /src/external/apache2/llvm/dist/clang/lib/DirectoryWatcher/linux/
DirectoryWatcher-linux.cpp 202 if (epoll_ctl(EpollFD, EPOLL_CTL_ADD, InotifyFD, &EventSpec) == -1) {
208 if (epoll_ctl(EpollFD, EPOLL_CTL_ADD, InotifyPollingStopSignal.FDRead,
  /src/external/gpl3/gcc/dist/c++tools/
server.cc 600 my_epoll_ctl (epoll_fd, EPOLL_CTL_ADD, EPOLLIN, sock_fd, 0);
772 my_epoll_ctl (epoll_fd, EPOLL_CTL_ADD, EPOLLIN, sock_fd, 0);
800 my_epoll_ctl (epoll_fd, EPOLL_CTL_ADD, EPOLLIN, fd, slot + 1);
configure 3585 epoll_ctl (fd, EPOLL_CTL_ADD, 0, &ev);
  /src/external/gpl3/gcc.old/dist/c++tools/
server.cc 600 my_epoll_ctl (epoll_fd, EPOLL_CTL_ADD, EPOLLIN, sock_fd, 0);
772 my_epoll_ctl (epoll_fd, EPOLL_CTL_ADD, EPOLLIN, sock_fd, 0);
800 my_epoll_ctl (epoll_fd, EPOLL_CTL_ADD, EPOLLIN, fd, slot + 1);
configure 3563 epoll_ctl (fd, EPOLL_CTL_ADD, 0, &ev);
  /src/sys/kern/
sys_epoll.c 317 case EPOLL_CTL_ADD:
  /src/external/ibm-public/postfix/dist/src/util/
events.c 472 #define EVENT_REG_ADD_OP(e, f, ev) EVENT_REG_FD_OP((e), (f), (ev), EPOLL_CTL_ADD)
475 #define EVENT_REG_ADD_TEXT "epoll_ctl EPOLL_CTL_ADD"
  /src/external/bsd/dhcpcd/dist/src/
eloop.c 313 op = e->events == 0 ? EPOLL_CTL_ADD : EPOLL_CTL_MOD;
  /src/external/bsd/wpa/dist/src/utils/
eloop.c 218 if (epoll_ctl(eloop.epollfd, EPOLL_CTL_ADD, sock, &ev) < 0) {
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_interceptors.cc 119 const int EPOLL_CTL_ADD = 1;
1822 if (op == EPOLL_CTL_ADD && epfd >= 0)
  /src/external/gpl3/gcc/dist/libsanitizer/tsan/
tsan_interceptors_posix.cpp 120 const int EPOLL_CTL_ADD = 1;
1957 if (op == EPOLL_CTL_ADD && epfd >= 0) {
  /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
tsan_interceptors_posix.cpp 112 const int EPOLL_CTL_ADD = 1;
1888 if (op == EPOLL_CTL_ADD && epfd >= 0)
  /src/external/bsd/openldap/dist/servers/slapd/
daemon.c 441 rc = epoll_ctl(slap_daemon[t].sd_epfd, EPOLL_CTL_ADD, \

Completed in 38 milliseconds

1 2