Searched refs:EPOLL_CLOEXEC (Results 1 - 14 of 14) sorted by relevance

/external/ltp/include/lapi/
H A Depoll.h22 #ifndef EPOLL_CLOEXEC
23 # define EPOLL_CLOEXEC 02000000 macro
/external/strace/xlat/
H A Depollflags.h2 #if defined EPOLL_CLOEXEC || defined O_CLOEXEC
3 #if !(defined(EPOLL_CLOEXEC) || (defined(HAVE_DECL_EPOLL_CLOEXEC) && HAVE_DECL_EPOLL_CLOEXEC))
4 # define EPOLL_CLOEXEC O_CLOEXEC macro
16 #if defined EPOLL_CLOEXEC || defined O_CLOEXEC
17 XLAT(EPOLL_CLOEXEC),
/external/ltp/testcases/kernel/syscalls/epoll_create1/
H A Depoll_create1_01.c26 * In this patch the only flag support is EPOLL_CLOEXEC which causes the
28 * EPOLL_CLOEXEC is introduced which in this implementation must have the same
51 fd = tst_syscall(__NR_epoll_create1, EPOLL_CLOEXEC);
53 tst_brk(TFAIL | TERRNO, "epoll_create1(EPOLL_CLOEXEC) failed");
57 tst_brk(TFAIL, "flags=EPOLL_CLOEXEC didn't set close-on-exec");
61 tst_res(TPASS, "epoll_create1(EPOLL_CLOEXEC) PASSED");
/external/kernel-headers/original/uapi/linux/
H A Deventpoll.h23 #define EPOLL_CLOEXEC O_CLOEXEC macro
/external/wayland/src/
H A Dwayland-os.c140 #ifdef EPOLL_CLOEXEC
141 fd = epoll_create1(EPOLL_CLOEXEC);
/external/wayland/tests/
H A Dos-wrappers-test.c348 #ifdef EPOLL_CLOEXEC
/external/python/cpython3/Lib/test/
H A Dtest_epoll.py77 if hasattr(select, "EPOLL_CLOEXEC"):
78 select.epoll(select.EPOLL_CLOEXEC).close()
/external/libevent/
H A Depoll.c148 epfd = epoll_create1(EPOLL_CLOEXEC);
/external/python/cpython3/Modules/
H A Dselectmodule.c1267 flags |= EPOLL_CLOEXEC;
2513 #ifdef EPOLL_CLOEXEC
2514 PyModule_AddIntMacro(m, EPOLL_CLOEXEC);
/external/dhcpcd-6.8.2/
H A Deloop.c386 return (ctx->poll_fd = epoll_create1(EPOLL_CLOEXEC));
H A Dconfigure860 epoll_create1(EPOLL_CLOEXEC);
/external/kmod/testsuite/
H A Dtestsuite.c301 fd_ep = epoll_create1(EPOLL_CLOEXEC);
/external/libmicrohttpd/src/microhttpd/
H A Ddaemon.c116 #ifndef EPOLL_CLOEXEC
117 #define EPOLL_CLOEXEC 0 macro
3526 daemon->epoll_fd = epoll_create1 (EPOLL_CLOEXEC);
3553 if (0 == EPOLL_CLOEXEC)
/external/libmicrohttpd/
H A Dconfigure13828 fd = epoll_create1(EPOLL_CLOEXEC);

Completed in 399 milliseconds