Searched defs:events (Results 1 - 9 of 9) sorted by relevance

/bionic/libc/bionic/
H A Depoll_wait.cpp31 int epoll_wait(int fd, struct epoll_event* events, int max_events, int timeout) { argument
32 return epoll_pwait(fd, events, max_events, timeout, NULL);
H A Depoll_pwait.cpp35 int epoll_pwait(int fd, epoll_event* events, int max_events, int timeout, const sigset_t* ss) { argument
42 return __epoll_pwait(fd, events, max_events, timeout, kernel_ss_ptr, sizeof(kernel_ss));
/bionic/tests/
H A Dsys_epoll_test.cpp28 epoll_event events[1]; local
31 ASSERT_EQ(0, epoll_wait(epoll_fd, events, 1, 1));
34 ASSERT_EQ(0, epoll_pwait(epoll_fd, events, 1, 1, NULL));
40 ASSERT_EQ(0, epoll_pwait(epoll_fd, events, 1, 1, &ss));
54 ev.events = EPOLLIN;
62 epoll_event events[1]; local
63 ASSERT_EQ(1, epoll_wait(epoll_fd, events, 1, 1));
64 ASSERT_EQ(expected, events[0].data.u64);
/bionic/libc/kernel/uapi/linux/
H A Deventpoll.h40 __u32 events; member in struct:epoll_event
H A Dfuse.h469 uint32_t events; member in struct:fuse_poll_in
/bionic/libc/kernel/uapi/asm-generic/
H A Dpoll.h55 short events; member in struct:pollfd
/bionic/libc/include/sys/
H A Depoll.h68 uint32_t events; member in struct:epoll_event
/bionic/libc/kernel/uapi/linux/raid/
H A Dmd_p.h179 __le64 events; member in struct:mdp_superblock_1
/bionic/libc/kernel/uapi/sound/
H A Dasequencer.h385 int events; member in struct:snd_seq_queue_status

Completed in 1417 milliseconds