/bionic/tests/headers/posix/ |
D | poll_h.c | 34 TYPE(struct pollfd); in poll_h() 35 STRUCT_MEMBER(struct pollfd, int, fd); in poll_h() 36 STRUCT_MEMBER(struct pollfd, short, events); in poll_h() 37 STRUCT_MEMBER(struct pollfd, short, revents); in poll_h() 52 FUNCTION(poll, int (*f)(struct pollfd[], nfds_t, int)); in poll_h()
|
/bionic/libc/include/bits/fortify/ |
D | poll.h | 33 int __poll_chk(struct pollfd* _Nullable, nfds_t, int, size_t) __INTRODUCED_IN(23); 34 int __ppoll_chk(struct pollfd* _Nullable, nfds_t, const struct timespec* _Nullable, const sigset_t*… 35 int __ppoll64_chk(struct pollfd* _Nullable, nfds_t, const struct timespec* _Nullable, const sigset6… 43 int poll(struct pollfd* _Nullable const fds __pass_object_size, nfds_t fd_count, int timeout) in poll() 58 int ppoll(struct pollfd* _Nullable const fds __pass_object_size, nfds_t fd_count, const struct time… in ppoll() 74 int ppoll64(struct pollfd* _Nullable const fds __pass_object_size, nfds_t fd_count, const struct ti… in ppoll64()
|
/bionic/libc/include/ |
D | poll.h | 52 int poll(struct pollfd* _Nullable __fds, nfds_t __count, int __timeout_ms); 62 int ppoll(struct pollfd* _Nullable __fds, nfds_t __count, const struct timespec* _Nullable __timeou… 67 int ppoll64(struct pollfd* _Nullable __fds, nfds_t __count, const struct timespec* _Nullable __tim…
|
/bionic/libc/bionic/ |
D | poll.cpp | 38 extern "C" int __ppoll(pollfd*, unsigned int, timespec*, const sigset64_t*, size_t); 41 int poll(pollfd* fds, nfds_t fd_count, int ms) { in poll() 51 int ppoll(pollfd* fds, nfds_t fd_count, const timespec* ts, const sigset_t* ss) { in ppoll() 57 int ppoll64(pollfd* fds, nfds_t fd_count, const timespec* ts, const sigset64_t* ss) { in ppoll64()
|
D | fortify.cpp | 158 int __poll_chk(pollfd* fds, nfds_t fd_count, int timeout, size_t fds_size) { in __poll_chk() 163 int __ppoll_chk(pollfd* fds, nfds_t fd_count, const timespec* timeout, in __ppoll_chk() 169 int __ppoll64_chk(pollfd* fds, nfds_t fd_count, const timespec* timeout, in __ppoll64_chk()
|
D | system_property_set.cpp | 209 pollfd pollfds[1]; in send_prop_msg()
|
/bionic/libc/kernel/uapi/asm-generic/ |
D | poll.h | 34 struct pollfd { struct
|
/bionic/tests/ |
D | clang_fortify_tests.cpp | 414 struct pollfd poll_fd = { pipe_fds[0], POLLRDHUP, 0 }; in FORTIFY_TEST() 416 struct pollfd few_fds[] = { poll_fd, poll_fd }; in FORTIFY_TEST() 427 struct pollfd few[2]; in FORTIFY_TEST() 428 struct pollfd extra[1]; in FORTIFY_TEST() 430 static_assert(sizeof(fds) >= sizeof(struct pollfd) * 3, ""); in FORTIFY_TEST()
|
D | fortify_test.cpp | 998 pollfd buf[1] = {{0, POLLIN, 0}}; in TEST_F() 1005 pollfd buf[1] = {{0, POLLIN, 0}}; in TEST_F() 1015 pollfd buf[1] = {{0, POLLIN, 0}}; in TEST_F()
|
/bionic/libc/private/ |
D | bionic_fortify.h | 67 size_t pollfd_array_length = fds_size / sizeof(pollfd); in __check_pollfd_array()
|
/bionic/libc/ |
D | SECCOMP_ALLOWLIST_APP.TXT | 36 int poll:poll(struct pollfd *fds, nfds_t nfds, int timeout) lp32
|
D | SECCOMP_ALLOWLIST_COMMON.TXT | 75 int ppoll_time64(pollfd*, unsigned int, timespec64*, const sigset64_t*, size_t) lp32
|
D | SYSCALLS.TXT | 341 int __ppoll:ppoll(pollfd*, unsigned int, timespec*, const sigset64_t*, size_t) all
|
/bionic/libc/upstream-netbsd/lib/libc/isc/ |
D | eventlib_p.h | 234 struct pollfd *pollfds; /* Allocated as needed */
|
/bionic/libc/malloc_debug/tests/ |
D | malloc_debug_system_tests.cpp | 291 struct pollfd read_fd = {.fd = fds[0], .events = POLLIN}; in InternalExec()
|
/bionic/docs/ |
D | clang_fortify_anatomy.md | 579 int poll(struct pollfd* const fds __attribute__((pass_object_size(1))), nfds_t fd_count, int timeou… 599 - When `fds` is too small to hold `fd_count` `pollfd`s, Clang will emit a 608 int poll(struct pollfd* const fds __attribute__((pass_object_size(1))), nfds_t fd_count, int timeou…
|
/bionic/libc/dns/resolv/ |
D | res_send.c | 1028 struct pollfd fds = { .fd = sock, .events = events }; in retrying_poll()
|