HomeSort by relevance Sort by last modified time
    Searched refs:EPOLL_CLOEXEC (Results 1 - 25 of 53) sorted by null

1 2 3

  /external/ltp/include/lapi/
epoll.h 22 #ifndef EPOLL_CLOEXEC
23 # define EPOLL_CLOEXEC 02000000
  /external/strace/xlat/
epollflags.h 2 #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
16 #if defined EPOLL_CLOEXEC || defined O_CLOEXEC
17 XLAT(EPOLL_CLOEXEC),
  /bionic/libc/include/sys/
epoll.h 44 * Some third-party code uses the existence of EPOLL_CLOEXEC to detect the
47 * don't want to harm adoption to the unified headers. We'll undef EPOLL_CLOEXEC
54 #if __ANDROID_API__ < __ANDROID_API_L__ && defined(EPOLL_CLOEXEC)
55 #undef EPOLL_CLOEXEC
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
eventpoll.h 22 #define EPOLL_CLOEXEC O_CLOEXEC
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
epoll.h 37 EPOLL_CLOEXEC = 02000000,
38 #define EPOLL_CLOEXEC EPOLL_CLOEXEC
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
epoll.h 37 EPOLL_CLOEXEC = 02000000,
38 #define EPOLL_CLOEXEC EPOLL_CLOEXEC
  /bionic/libc/kernel/uapi/linux/
eventpoll.h 24 #define EPOLL_CLOEXEC O_CLOEXEC
  /external/ltp/testcases/kernel/syscalls/epoll_create1/
epoll_create1_01.c 26 * 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/
eventpoll.h 23 #define EPOLL_CLOEXEC O_CLOEXEC
  /external/wayland/src/
wayland-os.c 140 #ifdef EPOLL_CLOEXEC
141 fd = epoll_create1(EPOLL_CLOEXEC);
  /bionic/tests/
sys_epoll_test.cpp 93 fd = epoll_create1(EPOLL_CLOEXEC);
  /prebuilts/go/darwin-x86/src/runtime/
defs_linux.go 113 EPOLL_CLOEXEC = C.EPOLL_CLOEXEC
defs2_linux.go 128 EPOLL_CLOEXEC = C.EPOLL_CLOEXEC
  /prebuilts/go/linux-x86/src/runtime/
defs_linux.go 113 EPOLL_CLOEXEC = C.EPOLL_CLOEXEC
defs2_linux.go 128 EPOLL_CLOEXEC = C.EPOLL_CLOEXEC
  /frameworks/native/libs/vr/libpdx/
service_dispatcher.cpp 32 epoll_fd_.Reset(epoll_create1(EPOLL_CLOEXEC));
  /frameworks/native/libs/vr/libpdx_uds/
channel_event_set.cpp 75 if (!SetupHandle(epoll_create1(EPOLL_CLOEXEC), &epoll_fd, "epoll")) {
  /external/wayland/tests/
os-wrappers-test.c 348 #ifdef EPOLL_CLOEXEC
  /frameworks/native/services/vr/bufferhubd/
producer_channel.cpp 111 acquire_fence_fd_.Reset(epoll_create1(EPOLL_CLOEXEC));
112 release_fence_fd_.Reset(epoll_create1(EPOLL_CLOEXEC));
  /external/python/cpython3/Lib/test/
test_epoll.py 77 if hasattr(select, "EPOLL_CLOEXEC"):
78 select.epoll(select.EPOLL_CLOEXEC).close()
  /system/core/libappfuse/
FuseAppLoop.cc 206 base::unique_fd epoll_fd(epoll_create1(EPOLL_CLOEXEC));
  /external/libevent/
epoll.c 148 epfd = epoll_create1(EPOLL_CLOEXEC);
  /external/python/cpython3/Modules/
selectmodule.c     [all...]
  /external/dhcpcd-6.8.2/
eloop.c 386 return (ctx->poll_fd = epoll_create1(EPOLL_CLOEXEC));
  /external/kmod/testsuite/
testsuite.c 301 fd_ep = epoll_create1(EPOLL_CLOEXEC);

Completed in 553 milliseconds

1 2 3