/third_party/python/Lib/test/ |
H A D | test_epoll.py | 22 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 D | epoll.rs | 4 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 D | mesa-overlay-control.py | 32 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 D | test_epoll.rs | 2 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 D | mod.rs | 1 pub mod epoll; modules
|
/third_party/ltp/testcases/kernel/syscalls/epoll_create/ |
H A D | epoll_create01.c | 13 * 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 D | epoll_create02.c | 14 #include <sys/epoll.h> 17 #include "lapi/epoll.h"
|
/third_party/musl/libc-test/src/functionalext/supplement/linux/linux_gtest/ |
H A D | linux_epoll_create_test.cpp | 2 #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 D | linux_epoll_create1_test.cpp | 4 #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 D | mod.rs | 13 pub mod epoll; modules
|
/third_party/ltp/testcases/kernel/syscalls/epoll_create1/ |
H A D | epoll_create1_02.c | 14 #include <sys/epoll.h> 17 #include "lapi/epoll.h"
|
H A D | epoll_create1_01.c | 14 #include <sys/epoll.h> 17 #include "lapi/epoll.h"
|
/third_party/musl/libc-test/src/functionalext/supplement/linux/ |
H A D | epoll_create.c | 16 // 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 D | epoll_wait.c | 16 // Solve the build error of this test code when importing the header file <sys/epoll.h> 26 #include <sys/epoll.h>
|
H A D | epoll_create1.c | 16 // 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 D | epoll_pwait.c | 16 // 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 D | tst_epoll.h | 6 #include <sys/epoll.h>
|
/third_party/ltp/testcases/kernel/syscalls/epoll_pwait/ |
H A D | epoll_pwait04.c | 14 #include <sys/epoll.h>
|
H A D | epoll_pwait05.c | 14 #include <sys/epoll.h> 18 #include "lapi/epoll.h"
|
H A D | epoll_pwait03.c | 13 #include <sys/epoll.h>
|
H A D | epoll_pwait02.c | 14 #include <sys/epoll.h>
|
/third_party/musl/src/linux/ |
H A D | epoll.c | 1 #include <sys/epoll.h>
|
/third_party/ltp/testcases/kernel/syscalls/epoll_ctl/ |
H A D | epoll_ctl04.c | 10 * 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 D | epoll_wait02.c | 14 #include <sys/epoll.h>
|
H A D | epoll_wait04.c | 13 #include <sys/epoll.h>
|