Lines Matching refs:nfds
1644 int sys_poll(struct pollfd *fds, int nfds, int timeout) in sys_poll() argument
1653 return my_syscall4(__NR_ppoll, fds, nfds, (timeout >= 0) ? &t : NULL, NULL); in sys_poll()
1655 return my_syscall3(__NR_poll, fds, nfds, timeout); in sys_poll()
1680 int sys_select(int nfds, fd_set *rfds, fd_set *wfds, fd_set *efds, struct timeval *timeout) in sys_select() argument
1687 } arg = { .n = nfds, .r = rfds, .w = wfds, .e = efds, .t = timeout }; in sys_select()
1696 return my_syscall6(__NR_pselect6, nfds, rfds, wfds, efds, timeout ? &t : NULL, NULL); in sys_select()
1701 return my_syscall5(__NR__newselect, nfds, rfds, wfds, efds, timeout); in sys_select()
2139 int poll(struct pollfd *fds, int nfds, int timeout) in poll() argument
2141 int ret = sys_poll(fds, nfds, timeout); in poll()
2200 int select(int nfds, fd_set *rfds, fd_set *wfds, fd_set *efds, struct timeval *timeout) in select() argument
2202 int ret = sys_select(nfds, rfds, wfds, efds, timeout); in select()