Home | History | Annotate | Download | only in strace

Lines Matching refs:nfds

252 		int     nfds;
281 nfds = (int) args[0];
282 /* Kernel rejects negative nfds, so we don't parse it either. */
283 if (nfds <= 0)
286 if (nfds > 1024*1024)
287 nfds = 1024*1024;
288 fdsize = (((nfds + 7) / 8) + current_wordsize-1) & -current_wordsize;
298 j = next_set_bit(fds, j, nfds);
315 unsigned nfds;
319 nfds = tcp->u_arg[1];
321 end = start + sizeof(fds) * nfds;
323 if (nfds == 0 || end < start)