Searched refs:fdsize (Results 1 – 2 of 2) sorted by relevance
/external/strace/ |
D | desc.c | 84 int nfds, fdsize; in decode_select() local 104 fdsize = (((nfds + 7) / 8) + current_wordsize-1) & -current_wordsize; in decode_select() 109 if (verbose(tcp) && fdsize > 0) in decode_select() 110 fds = malloc(fdsize); in decode_select() 118 if (umoven_or_printaddr(tcp, arg, fdsize, fds)) in decode_select() 149 fds = malloc(fdsize); in decode_select() 157 if (!arg || !fds || umoven(tcp, arg, fdsize, fds) < 0) in decode_select()
|
D | pathtrace.c | 251 unsigned fdsize; in pathtrace_match() local 273 fdsize = (((nfds + 7) / 8) + current_wordsize-1) & -current_wordsize; in pathtrace_match() 274 fds = xmalloc(fdsize); in pathtrace_match() 279 if (umoven(tcp, args[i], fdsize, fds) < 0) { in pathtrace_match()
|