Lines Matching refs:pfds0
175 const struct pollfd pfds0[] = { in main() local
182 struct pollfd *const tail_fds0 = tail_memdup(pfds0, sizeof(pfds0)); in main()
189 rc = syscall(__NR_poll, tail_fds0, ARRAY_SIZE(pfds0), timeout); in main()
193 print_pollfd_array_entering(tail_fds0, ARRAY_SIZE(pfds0), in main()
194 ARRAY_SIZE(pfds0), abbrev); in main()
195 tprintf(", %u, %d) = %d (", ARRAY_SIZE(pfds0), timeout, rc); in main()
196 print_pollfd_array_exiting(tail_fds0, ARRAY_SIZE(pfds0), abbrev); in main()
202 rc = syscall(__NR_poll, tail_fds0, ARRAY_SIZE(pfds0), timeout); in main()
206 print_pollfd_array_entering(tail_fds0, ARRAY_SIZE(pfds0), in main()
207 ARRAY_SIZE(pfds0), abbrev); in main()
208 tprintf(", %u, %d) = %d (", ARRAY_SIZE(pfds0), timeout, rc); in main()
209 print_pollfd_array_exiting(tail_fds0, ARRAY_SIZE(pfds0), abbrev); in main()
214 rc = syscall(__NR_poll, tail_fds0, ARRAY_SIZE(pfds0), timeout); in main()
218 print_pollfd_array_entering(tail_fds0, ARRAY_SIZE(pfds0), in main()
219 ARRAY_SIZE(pfds0), abbrev); in main()
220 tprintf(", %u, %d) = %d (", ARRAY_SIZE(pfds0), timeout, rc); in main()
221 print_pollfd_array_exiting(tail_fds0, ARRAY_SIZE(pfds0), abbrev); in main()
237 const void *const efault = tail_fds0 + ARRAY_SIZE(pfds0); in main()
243 const void *const epfds = tail_fds0 + ARRAY_SIZE(pfds0) - valid; in main()