Home
last modified time | relevance | path

Searched refs:EPOLL_CLOEXEC (Results 1 – 25 of 46) sorted by relevance

12

/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/
Dandroid-cloexec-epoll-create1.cpp4 #define EPOLL_CLOEXEC __O_CLOEXEC macro
33 epoll_create1(EPOLL_CLOEXEC); in f()
34 TEMP_FAILURE_RETRY(epoll_create1(EPOLL_CLOEXEC)); in f()
48 epoll_create1(EPOLL_CLOEXEC); in e()
49 TEMP_FAILURE_RETRY(epoll_create1(EPOLL_CLOEXEC)); in e()
56 epoll_create1(EPOLL_CLOEXEC); in d()
57 TEMP_FAILURE_RETRY(epoll_create1(EPOLL_CLOEXEC)); in d()
/external/strace/xlat/
Depollflags.h6 #if defined EPOLL_CLOEXEC || defined O_CLOEXEC
7 #if defined(EPOLL_CLOEXEC) || (defined(HAVE_DECL_EPOLL_CLOEXEC) && HAVE_DECL_EPOLL_CLOEXEC)
9 static_assert((EPOLL_CLOEXEC) == (O_CLOEXEC), "EPOLL_CLOEXEC != O_CLOEXEC");
12 # define EPOLL_CLOEXEC O_CLOEXEC
26 #if defined EPOLL_CLOEXEC || defined O_CLOEXEC
27 XLAT(EPOLL_CLOEXEC),
Depollflags.in1 #if defined EPOLL_CLOEXEC || defined O_CLOEXEC
2 EPOLL_CLOEXEC O_CLOEXEC
/external/ltp/include/lapi/
Depoll.h22 #ifndef EPOLL_CLOEXEC
23 # define EPOLL_CLOEXEC 02000000 macro
/external/llvm-project/clang-tools-extra/docs/clang-tidy/checks/
Dandroid-cloexec-epoll-create1.rst6 ``epoll_create1()`` should include ``EPOLL_CLOEXEC`` in its type argument to
18 epoll_create1(EPOLL_CLOEXEC);
Dandroid-cloexec-epoll-create.rst17 epoll_create1(EPOLL_CLOEXEC);
/external/wayland/src/
Dwayland-os.c140 #ifdef EPOLL_CLOEXEC in wl_os_epoll_create_cloexec()
141 fd = epoll_create1(EPOLL_CLOEXEC); in wl_os_epoll_create_cloexec()
/external/rust/crates/mio/src/sys/unix/selector/
Depoll.rs32 let flag = libc::EPOLL_CLOEXEC; in new()
229 libc::EPOLL_CLOEXEC, in debug_details()
245 assert_eq!(libc::O_CLOEXEC, libc::EPOLL_CLOEXEC); in assert_close_on_exec_flag()
/external/ltp/testcases/kernel/syscalls/epoll_create1/
Depoll_create1_01.c36 fd = tst_syscall(__NR_epoll_create1, EPOLL_CLOEXEC); in verify_epoll_create1()
/external/grpc-grpc/src/core/lib/iomgr/
Dis_epollexclusive_available.cc40 int fd = epoll_create1(EPOLL_CLOEXEC); in grpc_is_epollexclusive_available()
Dev_epollsig_linux.cc487 pi->epoll_fd = epoll_create1(EPOLL_CLOEXEC); in polling_island_create()
1677 int fd = epoll_create1(EPOLL_CLOEXEC);
/external/kernel-headers/original/uapi/linux/
Deventpoll.h23 #define EPOLL_CLOEXEC O_CLOEXEC macro
/external/rust/crates/grpcio-sys/grpc/src/core/lib/iomgr/
Dis_epollexclusive_available.cc40 int fd = epoll_create1(EPOLL_CLOEXEC); in grpc_is_epollexclusive_available()
/external/rust/crates/libc/src/unix/linux_like/linux/gnu/b32/
Dmod.rs200 pub const EPOLL_CLOEXEC: ::c_int = 0x400000; constant
245 pub const EPOLL_CLOEXEC: ::c_int = 0x80000; constant
/external/python/cpython3/Lib/test/
Dtest_epoll.py77 select.epoll(-1, select.EPOLL_CLOEXEC).close()
78 select.epoll(flags=select.EPOLL_CLOEXEC).close()
/external/rust/crates/nix/src/sys/
Depoll.rs41 EPOLL_CLOEXEC;
/external/wayland/tests/
Dos-wrappers-test.c348 #ifdef EPOLL_CLOEXEC in do_os_wrappers_epoll_create_cloexec()
/external/crosvm/sys_util/src/
Dpoll.rs19 EPOLL_CLOEXEC, EPOLL_CTL_ADD, EPOLL_CTL_DEL, EPOLL_CTL_MOD,
303 let epoll_fd = unsafe { epoll_create1(EPOLL_CLOEXEC) }; in new()
/external/llvm-project/clang/lib/DirectoryWatcher/linux/
DDirectoryWatcher-linux.cpp191 const int EpollFD = epoll_create1(EPOLL_CLOEXEC); in InotifyPollingLoop()
/external/linux-kselftest/tools/testing/selftests/pidfd/
Dpidfd_test.c360 int epoll_fd = epoll_create1(EPOLL_CLOEXEC); in poll_pidfd()
/external/python/cpython3/Modules/
Dselectmodule.c1295 self->epfd = epoll_create1(EPOLL_CLOEXEC); in newPyEpoll_Object()
1350 if (flags && flags != EPOLL_CLOEXEC) { in select_epoll_impl()
2566 #ifdef EPOLL_CLOEXEC
2567 PyModule_AddIntMacro(m, EPOLL_CLOEXEC);
/external/rust/crates/libc/src/unix/linux_like/linux/uclibc/mips/
Dmod.rs31 pub const EPOLL_CLOEXEC: ::c_int = 0x80000; constant
/external/libevent/
Depoll.c148 epfd = epoll_create1(EPOLL_CLOEXEC); in epoll_init()
/external/curl/docs/examples/
Dephiperfifo.c478 g.epfd = epoll_create1(EPOLL_CLOEXEC); in main()
/external/bcc/src/cc/api/
DBPFTable.cc365 epfd_ = epoll_create1(EPOLL_CLOEXEC); in open_all_cpu()

12