Lines Matching defs:fds
44 struct pollfd *fds; /* fds ppoll parameter */
74 * EFAULT v ('fds' array in the invalid address space)
88 .fds = fds_good,
97 .fds = fds_good,
107 .fds = fds_good,
116 .fds = fds_already_closed,
124 .fds = fds_good,
136 .fds = fds_good,
146 .fds = fds_good,
154 .fds = (struct pollfd *) -1,
158 static inline int libc_ppoll(struct pollfd *fds, nfds_t nfds, void *tmo_p,
162 return ppoll(fds, nfds, tmo_p, sigmask);
165 static inline int sys_ppoll(struct pollfd *fds, nfds_t nfds, void *tmo_p,
168 return tst_syscall(__NR_ppoll, fds, nfds, tmo_p, sigmask, sigsetsize);
171 static inline int sys_ppoll_time64(struct pollfd *fds, nfds_t nfds, void *tmo_p,
174 return tst_syscall(__NR_ppoll_time64, fds, nfds, tmo_p, sigmask,
260 sys_ret = tv->ppoll(tc->fds, tc->nfds, tst_ts_get(tsp), tc->sigmask,
276 if (tc->fds[0].revents == tc->expect_revents)
280 tc->fds[0].revents, tc->expect_revents);