Lines Matching refs:nfds
40 unsigned int nfds; /* nfds ppoll parameter */ member
86 .nfds = 1,
94 .nfds = 0,
105 .nfds = 0,
114 .nfds = 1,
122 .nfds = 0,
132 .nfds = 0,
144 .nfds = -1,
152 .nfds = 1,
158 static inline int libc_ppoll(struct pollfd *fds, nfds_t nfds, void *tmo_p, in libc_ppoll() argument
162 return ppoll(fds, nfds, tmo_p, sigmask); in libc_ppoll()
165 static inline int sys_ppoll(struct pollfd *fds, nfds_t nfds, void *tmo_p, in sys_ppoll() argument
168 return tst_syscall(__NR_ppoll, fds, nfds, tmo_p, sigmask, sigsetsize); in sys_ppoll()
171 static inline int sys_ppoll_time64(struct pollfd *fds, nfds_t nfds, void *tmo_p, in sys_ppoll_time64() argument
174 return tst_syscall(__NR_ppoll_time64, fds, nfds, tmo_p, sigmask, in sys_ppoll_time64()
260 sys_ret = tv->ppoll(tc->fds, tc->nfds, tst_ts_get(tsp), tc->sigmask, in do_test()