/third_party/ltp/include/lapi/ |
D | epoll.h | 13 #ifndef EPOLL_CLOEXEC 14 #define EPOLL_CLOEXEC 02000000 macro
|
/third_party/wayland_standard/src/ |
D | wayland-os.c | 140 #ifdef EPOLL_CLOEXEC in wl_os_epoll_create_cloexec() 141 fd = epoll_create1(EPOLL_CLOEXEC); in wl_os_epoll_create_cloexec()
|
/third_party/ltp/testcases/kernel/syscalls/epoll_create1/ |
D | epoll_create1_02.c | 26 {EPOLL_CLOEXEC + 1, EINVAL, "EPOLL_CLOEXEC+1"}
|
D | epoll_create1_01.c | 26 {EPOLL_CLOEXEC, 1, "with EPOLL_CLOEXEC"}
|
/third_party/weston/shared/ |
D | os-compatibility.c | 102 #ifdef EPOLL_CLOEXEC in os_epoll_create_cloexec() 103 fd = epoll_create1(EPOLL_CLOEXEC); in os_epoll_create_cloexec()
|
/third_party/musl/libc-test/src/functionalext/supplement/linux/ |
D | epoll_create1.c | 56 fd = epoll_create1(EPOLL_CLOEXEC); in epoll_create1_0100()
|
/third_party/musl/porting/liteos_m/kernel/include/sys/ |
D | epoll.h | 16 #define EPOLL_CLOEXEC O_CLOEXEC macro
|
/third_party/musl/include/sys/ |
D | epoll.h | 16 #define EPOLL_CLOEXEC O_CLOEXEC macro
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/ |
D | epoll.h | 16 #define EPOLL_CLOEXEC O_CLOEXEC macro
|
/third_party/musl/ndk_musl_include/sys/ |
D | epoll.h | 16 #define EPOLL_CLOEXEC O_CLOEXEC macro
|
/third_party/musl/porting/uniproton/kernel/include/sys/ |
D | epoll.h | 16 #define EPOLL_CLOEXEC O_CLOEXEC macro
|
/third_party/grpc/src/core/lib/iomgr/ |
D | is_epollexclusive_available.cc | 40 int fd = epoll_create1(EPOLL_CLOEXEC); in grpc_is_epollexclusive_available()
|
/third_party/python/Lib/test/ |
D | test_epoll.py | 77 select.epoll(-1, select.EPOLL_CLOEXEC).close() 78 select.epoll(flags=select.EPOLL_CLOEXEC).close()
|
/third_party/boost/boost/asio/detail/impl/ |
D | epoll_reactor.ipp | 578 #if defined(EPOLL_CLOEXEC) 579 int fd = epoll_create1(EPOLL_CLOEXEC); 580 #else // defined(EPOLL_CLOEXEC) 583 #endif // defined(EPOLL_CLOEXEC)
|
/third_party/boost/libs/asio/include/boost/asio/detail/impl/ |
D | epoll_reactor.ipp | 578 #if defined(EPOLL_CLOEXEC) 579 int fd = epoll_create1(EPOLL_CLOEXEC); 580 #else // defined(EPOLL_CLOEXEC) 583 #endif // defined(EPOLL_CLOEXEC)
|
/third_party/eudev/src/udev/ |
D | udevadm-monitor.c | 161 fd_ep = epoll_create1(EPOLL_CLOEXEC); in adm_monitor()
|
D | udevd.c | 264 fd_ep = epoll_create1(EPOLL_CLOEXEC); in worker_spawn() 1345 fd_ep = epoll_create1(EPOLL_CLOEXEC); in main()
|
D | udev-event.c | 471 fd_ep = epoll_create1(EPOLL_CLOEXEC); in spawn_read()
|
/third_party/wayland_standard/tests/ |
D | os-wrappers-test.c | 348 #ifdef EPOLL_CLOEXEC in do_os_wrappers_epoll_create_cloexec()
|
/third_party/python/Modules/ |
D | selectmodule.c | 1262 self->epfd = epoll_create1(EPOLL_CLOEXEC); in newPyEpoll_Object() 1317 if (flags && flags != EPOLL_CLOEXEC) { in select_epoll_impl() 2527 #ifdef EPOLL_CLOEXEC 2528 PyModule_AddIntMacro(m, EPOLL_CLOEXEC);
|
/third_party/eudev/test/ |
D | test-libudev.c | 224 fd_ep = epoll_create1(EPOLL_CLOEXEC); in test_monitor()
|
/third_party/curl/docs/examples/ |
D | ephiperfifo.c | 478 g.epfd = epoll_create1(EPOLL_CLOEXEC); in main()
|
/third_party/wayland-ivi-extension/ivi-layermanagement-examples/multi-touch-viewer/src/ |
D | window.c | 243 int fd = epoll_create1(EPOLL_CLOEXEC); in os_epoll_create_cloexec()
|
/third_party/skia/third_party/externals/microhttpd/src/microhttpd/ |
D | daemon.c | 116 #ifndef EPOLL_CLOEXEC 117 #define EPOLL_CLOEXEC 0 macro 3469 daemon->epoll_fd = epoll_create1 (EPOLL_CLOEXEC); in setup_epoll_to_listen() 3496 if (0 == EPOLL_CLOEXEC) in setup_epoll_to_listen()
|
/third_party/python/Doc/library/ |
D | select.rst | 68 value must be ``0`` or ``select.EPOLL_CLOEXEC``, otherwise ``OSError`` is 88 The *flags* parameter. ``select.EPOLL_CLOEXEC`` is used by default now.
|