/bionic/tests/ |
D | fdtrack_test.cpp | 50 void DumpEvent(std::vector<android_fdtrack_event>* events, size_t index) { in DumpEvent() argument 51 auto& event = (*events)[index]; in DumpEvent() 69 static std::vector<android_fdtrack_event> events; in FdtrackRun() local 70 events.clear(); in FdtrackRun() 73 android_fdtrack_hook_t hook = [](android_fdtrack_event* event) { events.push_back(*event); }; in FdtrackRun() 93 while (i + 1 < events.size()) { in FdtrackRun() 94 auto& event = events[i]; in FdtrackRun() 96 for (size_t j = i + 1; j < events.size(); ++j) { in FdtrackRun() 97 if (event.fd == events[j].fd) { in FdtrackRun() 98 if (events[j].type == ANDROID_FDTRACK_EVENT_TYPE_CREATE) { in FdtrackRun() [all …]
|
D | sys_epoll_test.cpp | 32 epoll_event events[1] = {}; in TEST() local 33 ASSERT_EQ(0, epoll_wait(epoll_fd, events, 1, 1)); in TEST() 41 epoll_event events[1] = {}; in TEST() local 42 ASSERT_EQ(0, epoll_pwait(epoll_fd, events, 1, 1, nullptr)); in TEST() 51 epoll_event events[1] = {}; in TEST() local 52 ASSERT_EQ(0, epoll_pwait64(epoll_fd, events, 1, 1, nullptr)); in TEST() 64 epoll_event events[1] = {}; in TEST() local 66 int rc = epoll_pwait2(epoll_fd, events, 1, &ts, nullptr); in TEST() 79 epoll_event events[1] = {}; in TEST() local 83 ASSERT_EQ(0, epoll_pwait(epoll_fd, events, 1, 1, &ss)); in TEST() [all …]
|
/bionic/libc/bionic/ |
D | sys_epoll.cpp | 52 int epoll_pwait(int fd, epoll_event* events, int max_events, int timeout, const sigset_t* ss) { in epoll_pwait() argument 54 return epoll_pwait64(fd, events, max_events, timeout, set.ptr); in epoll_pwait() 57 int epoll_pwait64(int fd, epoll_event* events, int max_events, int timeout, const sigset64_t* ss) { in epoll_pwait64() argument 58 return __epoll_pwait(fd, events, max_events, timeout, ss, sizeof(*ss)); in epoll_pwait64() 61 int epoll_pwait2(int fd, epoll_event* events, int max_events, const timespec* timeout, in epoll_pwait2() argument 64 return epoll_pwait2_64(fd, events, max_events, timeout, set.ptr); in epoll_pwait2() 67 int epoll_pwait2_64(int fd, epoll_event* events, int max_events, const timespec* timeout, in epoll_pwait2_64() argument 83 return __epoll_pwait2(fd, events, max_events, kts_ptr, ss, sizeof(*ss)); in epoll_pwait2_64() 86 int epoll_wait(int fd, struct epoll_event* events, int max_events, int timeout) { in epoll_wait() argument 87 return epoll_pwait64(fd, events, max_events, timeout, nullptr); in epoll_wait()
|
D | system_property_set.cpp | 211 pollfds[0].events = 0; in send_prop_msg()
|
/bionic/libc/include/bits/ |
D | epoll_event.h | 49 uint32_t events; member
|
/bionic/libc/kernel/uapi/asm-generic/ |
D | poll.h | 36 short events; member
|
/bionic/libc/kernel/uapi/linux/ |
D | vboxguest.h | 96 __u32 events; member 99 __u32 events; member
|
D | fuse.h | 483 uint32_t events; member
|
/bionic/tests/headers/posix/ |
D | poll_h.c | 36 STRUCT_MEMBER(struct pollfd, short, events); in poll_h()
|
/bionic/libc/ |
D | SECCOMP_ALLOWLIST_APP.TXT | 21 int epoll_wait:epoll_wait(int epfd, struct epoll_event *events, int maxevents, int timeout) lp32
|
/bionic/libc/kernel/uapi/drm/ |
D | vc4_drm.h | 215 __u8 events[DRM_VC4_MAX_PERF_COUNTERS]; member
|
/bionic/libc/kernel/uapi/linux/raid/ |
D | md_p.h | 154 __le64 events; member
|
/bionic/libc/dns/resolv/ |
D | res_send.c | 152 static int retrying_poll(const int sock, short events, const struct timespec* finish); 1015 retrying_poll(const int sock, const short events, const struct timespec* finish) { in retrying_poll() argument 1028 struct pollfd fds = { .fd = sock, .events = events }; in retrying_poll()
|
/bionic/libc/kernel/uapi/asm-x86/asm/ |
D | kvm.h | 335 struct kvm_vcpu_events events; member 397 __u64 events[]; member
|
/bionic/libc/kernel/uapi/sound/ |
D | asequencer.h | 333 int events; member
|
/bionic/docs/ |
D | fdtrack.md | 15 called at any point in order to start capturing events, but be sure to properly
|
/bionic/libc/malloc_debug/tests/ |
D | malloc_debug_system_tests.cpp | 291 struct pollfd read_fd = {.fd = fds[0], .events = POLLIN}; in InternalExec()
|