/third_party/ltp/include/lapi/ |
H A D | epoll.h | 13 #ifndef EPOLL_CLOEXEC 14 #define EPOLL_CLOEXEC 02000000 macro
|
/third_party/ltp/testcases/kernel/syscalls/epoll_create1/ |
H A D | epoll_create1_02.c | 26 {EPOLL_CLOEXEC + 1, EINVAL, "EPOLL_CLOEXEC+1"}
|
H A D | epoll_create1_01.c | 11 * file descriptor with EPOLL_CLOEXEC. 25 {0, 0, "without EPOLL_CLOEXEC"}, 26 {EPOLL_CLOEXEC, 1, "with EPOLL_CLOEXEC"}
|
/third_party/musl/libc-test/src/functionalext/supplement/linux/ |
H A D | epoll_create1.c | 56 fd = epoll_create1(EPOLL_CLOEXEC); in epoll_create1_0100()
|
/third_party/ltp/lib/ |
H A D | tst_epoll.c | 18 case EPOLL_CLOEXEC: in safe_epoll_create1() 19 flags_str = "EPOLL_CLOEXEC"; in safe_epoll_create1()
|
/third_party/musl/porting/liteos_m/kernel/include/sys/ |
H A D | epoll.h | 16 #define EPOLL_CLOEXEC O_CLOEXEC macro
|
/third_party/musl/porting/uniproton/kernel/include/sys/ |
H A D | epoll.h | 16 #define EPOLL_CLOEXEC O_CLOEXEC macro
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/ |
H A D | epoll.h | 16 #define EPOLL_CLOEXEC O_CLOEXEC macro
|
/third_party/musl/include/sys/ |
H A D | epoll.h | 16 #define EPOLL_CLOEXEC O_CLOEXEC macro
|
/third_party/rust/crates/libc/src/unix/linux_like/linux/gnu/b32/ |
H A D | mod.rs | 213 pub const EPOLL_CLOEXEC: ::c_int = 0x400000; consts 258 pub const EPOLL_CLOEXEC: ::c_int = 0x80000; consts
|
/third_party/python/Lib/test/ |
H A D | test_epoll.py | 76 if hasattr(select, "EPOLL_CLOEXEC"): 77 select.epoll(-1, select.EPOLL_CLOEXEC).close() 78 select.epoll(flags=select.EPOLL_CLOEXEC).close() 93 if hasattr(select, "EPOLL_CLOEXEC"):
|
/third_party/rust/crates/nix/src/sys/ |
H A D | epoll.rs | 40 EPOLL_CLOEXEC;
|
/third_party/libbpf/src/ |
H A D | ringbuf.c | 205 rb->epoll_fd = epoll_create1(EPOLL_CLOEXEC); in ring_buffer__new() 494 rb->epoll_fd = epoll_create1(EPOLL_CLOEXEC); in user_ring_buffer__new()
|
/third_party/eudev/src/udev/ |
H A D | udevadm-monitor.c | 161 fd_ep = epoll_create1(EPOLL_CLOEXEC); in adm_monitor()
|
H A D | udevd.c | 264 fd_ep = epoll_create1(EPOLL_CLOEXEC); in worker_spawn() 1345 fd_ep = epoll_create1(EPOLL_CLOEXEC); in main()
|
H A D | udev-event.c | 471 fd_ep = epoll_create1(EPOLL_CLOEXEC); in spawn_read()
|
/third_party/rust/crates/linux-raw-sys/gen/modules/ |
H A D | general.h | 243 #define EPOLL_CLOEXEC O_CLOEXEC macro
|
/third_party/rust/crates/rustix/src/backend/linux_raw/io/ |
H A D | epoll.rs | 79 /// `EPOLL_CLOEXEC` 80 const CLOEXEC = linux_raw_sys::general::EPOLL_CLOEXEC;
|
/third_party/rust/crates/libc/src/unix/linux_like/linux/uclibc/mips/ |
H A D | mod.rs | 31 pub const EPOLL_CLOEXEC: ::c_int = 0x80000; consts
|
/third_party/rust/crates/rustix/src/backend/libc/io/ |
H A D | epoll.rs | 78 /// `EPOLL_CLOEXEC` 79 const CLOEXEC = c::EPOLL_CLOEXEC;
|
/third_party/python/Modules/ |
H A D | selectmodule.c | 1283 self->epfd = epoll_create1(EPOLL_CLOEXEC); in newPyEpoll_Object() 1320 must be 0 or select.EPOLL_CLOEXEC, otherwise OSError is raised. 1338 if (flags && flags != EPOLL_CLOEXEC) { in select_epoll_impl() 2549 #ifdef EPOLL_CLOEXEC 2550 PyModule_AddIntMacro(m, EPOLL_CLOEXEC);
|
/third_party/eudev/test/ |
H A D | test-libudev.c | 224 fd_ep = epoll_create1(EPOLL_CLOEXEC); in test_monitor()
|
/third_party/curl/docs/examples/ |
H A D | ephiperfifo.c | 478 g.epfd = epoll_create1(EPOLL_CLOEXEC); in main()
|
/third_party/skia/third_party/externals/microhttpd/src/microhttpd/ |
H A 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/rust/crates/libc/src/unix/linux_like/linux/gnu/b64/x86_64/ |
H A D | mod.rs | 597 pub const EPOLL_CLOEXEC: ::c_int = 0x80000; consts
|