Home
last modified time | relevance | path

Searched refs:epoll_create1 (Results 1 - 25 of 41) sorted by relevance

12

/third_party/rust/crates/nix/test/sys/
H A Dtest_epoll.rs2 use nix::sys::epoll::{epoll_create1, epoll_ctl};
7 let efd = epoll_create1(EpollCreateFlags::empty()).unwrap(); in test_epoll_errno()
19 let efd = epoll_create1(EpollCreateFlags::empty()).unwrap(); in test_epoll_ctl()
/third_party/musl/Benchmark/musl/
H A Dlibc_epoll.cpp35 int epollFd = epoll_create1(0); in Bm_function_Epoll_createl()
49 int epollFd = epoll_create1(0); in Bm_function_Epoll_ctl()
70 int epollFd = epoll_create1(0); in Bm_function_Epoll_wait()
/third_party/musl/libc-test/src/functionalext/supplement/linux/
H A Depoll_create1.c52 fd = epoll_create1(0); in epoll_create1_0100()
56 fd = epoll_create1(EPOLL_CLOEXEC); in epoll_create1_0100()
/third_party/musl/src/linux/
H A Depoll.c11 return epoll_create1(0); in epoll_create()
14 int epoll_create1(int flags) in epoll_create1() function
/third_party/rust/crates/nix/src/sys/
H A Depoll.rs81 pub fn epoll_create1(flags: EpollCreateFlags) -> Result<RawFd> { in epoll_create1() functions
82 let res = unsafe { libc::epoll_create1(flags.bits()) }; in epoll_create1()
/third_party/musl/libc-test/src/functionalext/supplement/linux/linux_gtest/
H A Dlinux_epoll_create1_test.cpp21 int fd = epoll_create1(0); in HWTEST_F()
/third_party/ltp/lib/
H A Dtst_epoll.c15 int ret = epoll_create1(flags); in safe_epoll_create1()
30 TBROK | TERRNO, "epoll_create1(%s)", flags_str); in safe_epoll_create1()
/third_party/musl/porting/liteos_m/kernel/include/sys/
H A Depoll.h59 int epoll_create1(int);
/third_party/musl/porting/uniproton/kernel/include/sys/
H A Depoll.h59 int epoll_create1(int);
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/
H A Depoll.h59 int epoll_create1(int);
/third_party/musl/include/sys/
H A Depoll.h59 int epoll_create1(int);
/third_party/libuv/src/unix/
H A Dos390-syscalls.h55 uv__os390_epoll* epoll_create1(int flags);
H A Dos390-syscalls.c213 uv__os390_epoll* epoll_create1(int flags) { in epoll_create1() function
H A Dos390.c117 ep = epoll_create1(0); in uv__platform_loop_init()
/third_party/node/deps/uv/src/unix/
H A Dos390-syscalls.h55 uv__os390_epoll* epoll_create1(int flags);
H A Depoll.c29 fd = epoll_create1(O_CLOEXEC); in uv__epoll_init()
31 /* epoll_create1() can fail either because it's not implemented (old kernel) in uv__epoll_init()
H A Dos390-syscalls.c213 uv__os390_epoll* epoll_create1(int flags) { in epoll_create1() function
/third_party/node/deps/cares/src/lib/
H A Dares_event_epoll.c76 ep->epoll_fd = epoll_create1(0); in ares_evsys_epoll_init()
/third_party/libbpf/src/
H A Dringbuf.c205 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 Dudevadm-monitor.c161 fd_ep = epoll_create1(EPOLL_CLOEXEC); in adm_monitor()
H A Dudevd.c264 fd_ep = epoll_create1(EPOLL_CLOEXEC); in worker_spawn()
1345 fd_ep = epoll_create1(EPOLL_CLOEXEC); in main()
H A Dudev-event.c471 fd_ep = epoll_create1(EPOLL_CLOEXEC); in spawn_read()
/third_party/rust/crates/rustix/src/backend/libc/io/
H A Depoll.rs125 /// `epoll_create1(flags)`—Creates a new `Epoll`.
130 #[doc(alias = "epoll_create1")]
132 // Safety: We're calling `epoll_create1` via FFI and we know how it in new()
136 epoll_fd: ret_owned_fd(c::epoll_create1(flags.bits()))?, in new()
/third_party/eudev/test/
H A Dtest-libudev.c224 fd_ep = epoll_create1(EPOLL_CLOEXEC); in test_monitor()
/third_party/curl/docs/examples/
H A Dephiperfifo.c478 g.epfd = epoll_create1(EPOLL_CLOEXEC); in main()
480 perror("epoll_create1 failed"); in main()

Completed in 16 milliseconds

12