Home | History | Annotate | Download | only in strace

Lines Matching defs:nfds

151 	int nfds = (int) args[0];
152 /* Kernel rejects negative nfds, so we don't parse it either. */
153 if (nfds <= 0)
156 if (nfds > 1024*1024)
157 nfds = 1024*1024;
158 unsigned int fdsize = (((nfds + 7) / 8) + current_wordsize-1) & -current_wordsize;
167 j = next_set_bit(fds, j, nfds);
312 unsigned nfds;
316 nfds = tcp->u_arg[1];
318 if (nfds > 1024 * 1024)
319 nfds = 1024 * 1024;
320 end = start + sizeof(fds) * nfds;
322 if (nfds == 0 || end < start)