Home
last modified time | relevance | path

Searched refs:epoll_event (Results 1 - 25 of 87) sorted by relevance

1234

/third_party/musl/porting/liteos_m/kernel/include/sys/
H A Depoll.h48 struct epoll_event { struct
60 int epoll_ctl(int, int, int, struct epoll_event *);
61 int epoll_wait(int, struct epoll_event *, int, int);
62 int epoll_pwait(int, struct epoll_event *, int, int, const sigset_t *);
/third_party/musl/porting/uniproton/kernel/include/sys/
H A Depoll.h48 struct epoll_event { struct
60 int epoll_ctl(int, int, int, struct epoll_event *);
61 int epoll_wait(int, struct epoll_event *, int, int);
62 int epoll_pwait(int, struct epoll_event *, int, int, const sigset_t *);
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/
H A Depoll.h48 struct epoll_event { struct
60 int epoll_ctl(int, int, int, struct epoll_event *);
61 int epoll_wait(int, struct epoll_event *, int, int);
62 int epoll_pwait(int, struct epoll_event *, int, int, const sigset_t *);
/third_party/musl/include/sys/
H A Depoll.h48 struct epoll_event { struct
60 int epoll_ctl(int, int, int, struct epoll_event *);
61 int epoll_wait(int, struct epoll_event *, int, int);
62 int epoll_pwait(int, struct epoll_event *, int, int, const sigset_t *);
/third_party/ltp/testcases/kernel/syscalls/epoll_wait/
H A Depoll_wait01.c11 * EPOLLIN events on an epoll instance and that struct epoll_event is set
53 static struct epoll_event epevs[2] = { in setup()
76 static int has_event(struct epoll_event *epevs, int epevs_len, in has_event()
89 static void dump_epevs(struct epoll_event *epevs, int epevs_len) in dump_epevs()
101 struct epoll_event ret_evs = {.events = 0, .data.fd = 0}; in verify_epollout()
135 struct epoll_event ret_evs = {.events = 0, .data.fd = 0}; in verify_epollin()
177 struct epoll_event ret_evs[2]; in verify_epollio()
H A Depoll_wait03.c26 static struct epoll_event epevs[1] = {
30 static struct epoll_event *ev_rdonly, *ev_rdwr = epevs;
35 struct epoll_event **ev;
H A Depoll_wait06.c61 struct epoll_event evt_receive; in run()
67 SAFE_EPOLL_CTL(epfd, EPOLL_CTL_ADD, fds[0], &((struct epoll_event) { in run()
71 SAFE_EPOLL_CTL(epfd, EPOLL_CTL_ADD, fds[1], &((struct epoll_event) { in run()
H A Depoll_wait07.c36 struct epoll_event evt_receive; in run()
45 SAFE_EPOLL_CTL(epfd, EPOLL_CTL_ADD, fds[0], &((struct epoll_event) { in run()
/third_party/node/deps/uv/src/unix/
H A Depoll.c50 struct epoll_event* events; in uv__platform_invalidate_fd()
51 struct epoll_event dummy; in uv__platform_invalidate_fd()
58 events = (struct epoll_event*) loop->watchers[loop->nwatchers]; in uv__platform_invalidate_fd()
70 * We pass in a dummy epoll_event, to work around a bug in old kernels. in uv__platform_invalidate_fd()
83 struct epoll_event e; in uv__io_check_fd()
117 struct epoll_event events[1024]; in uv__io_poll()
118 struct epoll_event* pe; in uv__io_poll()
119 struct epoll_event e; in uv__io_poll()
307 struct epoll_event* events; in uv__io_poll()
H A Dos390-syscalls.h41 struct epoll_event { struct
56 int epoll_ctl(uv__os390_epoll* ep, int op, int fd, struct epoll_event *event);
57 int epoll_wait(uv__os390_epoll* ep, struct epoll_event *events, int maxevents, int timeout);
/third_party/musl/src/linux/
H A Depoll.c27 int epoll_ctl(int fd, int op, int fd2, struct epoll_event *ev) in epoll_ctl()
32 int epoll_pwait(int fd, struct epoll_event *ev, int cnt, int to, const sigset_t *sigs) in epoll_pwait()
41 int epoll_wait(int fd, struct epoll_event *ev, int cnt, int to) in epoll_wait()
/third_party/musl/libc-test/src/functionalext/supplement/linux/linux_gtest/
H A Dlinux_epoll_ctl_test.cpp23 epoll_event ev; in HWTEST_F()
39 epoll_event ev; in HWTEST_F()
55 epoll_event ev; in HWTEST_F()
H A Dlinux_epoll_wait_test.cpp29 epoll_event ev; in HWTEST_F()
34 epoll_event events[MAX_EVENTS]; in HWTEST_F()
/third_party/ltp/testcases/kernel/syscalls/epoll_ctl/
H A Depoll_ctl01.c28 static struct epoll_event events[3] = {
59 static int has_event(struct epoll_event *epvs, int len, in has_event()
78 struct epoll_event res_evs[2]; in check_epoll_ctl()
123 static void opera_epoll_ctl(int opt, int fd, struct epoll_event *epvs) in opera_epoll_ctl()
/third_party/libuv/src/unix/
H A Dos390-syscalls.h41 struct epoll_event { struct
56 int epoll_ctl(uv__os390_epoll* ep, int op, int fd, struct epoll_event *event);
57 int epoll_wait(uv__os390_epoll* ep, struct epoll_event *events, int maxevents, int timeout);
/third_party/node/deps/cares/src/lib/
H A Dares_event_epoll.c99 struct epoll_event epev; in ares_evsys_epoll_event_add()
120 struct epoll_event epev; in ares_evsys_epoll_event_del()
132 struct epoll_event epev; in ares_evsys_epoll_event_mod()
149 struct epoll_event events[8]; in ares_evsys_epoll_wait()
/third_party/ltp/include/
H A Dtst_epoll.h24 int epfd, int op, int fd, struct epoll_event *ev);
30 int epfd, struct epoll_event *events,
/third_party/musl/libc-test/src/functionalext/supplement/linux/
H A Depoll_pwait.c42 struct epoll_event events[1]; in epoll_pwait_0100()
61 struct epoll_event events[1]; in epoll_pwait_0200()
H A Depoll_ctl.c53 struct epoll_event ev; in epoll_ctl_0100()
67 struct epoll_event events[1]; in epoll_ctl_0100()
/third_party/alsa-utils/axfer/
H A Dwaiter-epoll.c21 struct epoll_event *events;
40 struct epoll_event ev = { in epoll_prepare()
68 struct epoll_event *ev = &state->events[i]; in epoll_wait_event()
/third_party/rust/crates/nix/src/sys/
H A Depoll.rs47 event: libc::epoll_event,
53 event: libc::epoll_event { in new()
121 events.as_mut_ptr() as *mut libc::epoll_event, in epoll_wait()
/third_party/eudev/src/udev/
H A Dudevadm-monitor.c90 struct epoll_event ep_kernel, ep_udev; in adm_monitor()
199 memzero(&ep_udev, sizeof(struct epoll_event)); in adm_monitor()
233 memzero(&ep_kernel, sizeof(struct epoll_event)); in adm_monitor()
247 struct epoll_event ev[4]; in adm_monitor()
/third_party/ltp/testcases/kernel/syscalls/epoll/
H A Depoll-ltp.c397 struct epoll_event event; in test_epoll_ctl()
398 char event_mem[sizeof(struct epoll_event) * 2]; in test_epoll_ctl()
399 struct epoll_event *unaligned_event_ptr; in test_epoll_ctl()
407 struct epoll_event parameter */ in test_epoll_ctl()
426 /* Get a pointer to an unaligned struct epoll_event */ in test_epoll_ctl()
432 unaligned_event_ptr = (struct epoll_event *)unalign_ptr; in test_epoll_ctl()
442 struct epoll_event *ev_ptr = NULL; in test_epoll_ctl()
/third_party/ltp/lib/
H A Dtst_epoll.c37 int epfd, int op, int fd, struct epoll_event *ev) in safe_epoll_ctl()
68 int epfd, struct epoll_event *events, in safe_epoll_wait()
/third_party/ltp/include/lapi/
H A Depoll.h24 static inline int epoll_pwait(int epfd, struct epoll_event *events, in epoll_pwait()
40 static inline int epoll_pwait2(int epfd, struct epoll_event *events, in epoll_pwait2()

Completed in 7 milliseconds

1234