Home
last modified time | relevance | path

Searched refs:epoll (Results 1 - 25 of 74) sorted by relevance

123

/third_party/python/Lib/test/
H A Dtest_epoll.py22 Tests for epoll wrapper.
31 if not hasattr(select, "epoll"):
35 select.epoll()
38 raise unittest.SkipTest("kernel doesn't support epoll()")
67 ep = select.epoll(16)
77 select.epoll(-1, select.EPOLL_CLOEXEC).close()
78 select.epoll(flags=select.EPOLL_CLOEXEC).close()
79 select.epoll(flags=0).close()
82 self.assertRaises(TypeError, select.epoll, 1, 2, 3)
83 self.assertRaises(TypeError, select.epoll, 'fo
[all...]
/third_party/rust/crates/rustix/tests/io/
H A Depoll.rs4 use rustix::io::epoll::{self, Epoll};
33 let epoll = Epoll::new(epoll::CreateFlags::CLOEXEC, epoll::Owning::<OwnedFd>::new()).unwrap(); in server()
36 let fd: OwnedFd = epoll.into(); in server()
37 let epoll: Epoll<epoll::Owning<OwnedFd>> = fd.into(); in server()
38 let fd: RawFd = epoll.into_raw_fd(); in server()
39 let epoll = unsafe { Epoll::<epoll in server()
[all...]
/third_party/mesa3d/src/vulkan/overlay-layer/
H A Dmesa-overlay-control.py32 epoll = select.epoll()
33 epoll.register(sock, EPOLLIN | EPOLLPRI | EPOLLERR)
34 self.epoll = epoll
44 events = self.epoll.poll(timeout)
/third_party/rust/crates/nix/test/sys/
H A Dtest_epoll.rs2 use nix::sys::epoll::{epoll_create1, epoll_ctl};
3 use nix::sys::epoll::{EpollCreateFlags, EpollEvent, EpollFlags, EpollOp};
/third_party/rust/crates/rustix/src/backend/linux_raw/io/
H A Dmod.rs1 pub mod epoll; modules
/third_party/ltp/testcases/kernel/syscalls/epoll_create/
H A Depoll_create01.c13 * that the caller expected to add to the epoll instance, but it is no longer
17 #include <sys/epoll.h>
19 #include "lapi/epoll.h"
H A Depoll_create02.c14 #include <sys/epoll.h>
17 #include "lapi/epoll.h"
/third_party/musl/libc-test/src/functionalext/supplement/linux/linux_gtest/
H A Dlinux_epoll_create_test.cpp2 #include <sys/epoll.h>
13 * @tc.desc: This test verifies epoll_create function correctly create an epoll instance, if the test passes,
14 * it indicates that epoll the function of the create1 function is normal.
H A Dlinux_epoll_create1_test.cpp4 #include <sys/epoll.h>
15 * @tc.desc: This test verifies epoll can the create1 function correctly create an epoll instance? if the test passes,
16 * it indicates that epoll the function of the create1 function is normal.
/third_party/rust/crates/rustix/src/backend/libc/io/
H A Dmod.rs13 pub mod epoll; modules
/third_party/ltp/testcases/kernel/syscalls/epoll_create1/
H A Depoll_create1_02.c14 #include <sys/epoll.h>
17 #include "lapi/epoll.h"
H A Depoll_create1_01.c14 #include <sys/epoll.h>
17 #include "lapi/epoll.h"
/third_party/musl/libc-test/src/functionalext/supplement/linux/
H A Depoll_create.c16 // Solve the build error of this test code when importing the header file <sys/epoll.h>
26 #include <sys/epoll.h>
31 * @tc.desc : Returns a file descriptor referring to the new epoll instance
H A Depoll_wait.c16 // Solve the build error of this test code when importing the header file <sys/epoll.h>
26 #include <sys/epoll.h>
H A Depoll_create1.c16 // Solve the build error of this test code when importing the header file <sys/epoll.h>
28 #include <sys/epoll.h>
44 * @tc.desc : Returns a file descriptor referring to the new epoll instance
H A Depoll_pwait.c16 // Solve the build error of this test code when importing the header file <sys/epoll.h>
27 #include <sys/epoll.h>
/third_party/ltp/include/
H A Dtst_epoll.h6 #include <sys/epoll.h>
/third_party/ltp/testcases/kernel/syscalls/epoll_pwait/
H A Depoll_pwait04.c14 #include <sys/epoll.h>
H A Depoll_pwait05.c14 #include <sys/epoll.h>
18 #include "lapi/epoll.h"
H A Depoll_pwait03.c13 #include <sys/epoll.h>
H A Depoll_pwait02.c14 #include <sys/epoll.h>
/third_party/musl/src/linux/
H A Depoll.c1 #include <sys/epoll.h>
/third_party/ltp/testcases/kernel/syscalls/epoll_ctl/
H A Depoll_ctl04.c10 * Verify that the maximum number of nesting allowed inside epoll sets is 5,
15 #include <sys/epoll.h>
35 tst_brk(TBROK | TERRNO, "fail to create epoll instance"); in setup()
58 tst_brk(TBROK | TERRNO, "fail to create epoll instance"); in verify_epoll_ctl()
/third_party/ltp/testcases/kernel/syscalls/epoll_wait/
H A Depoll_wait02.c14 #include <sys/epoll.h>
H A Depoll_wait04.c13 #include <sys/epoll.h>

Completed in 5 milliseconds

123