Searched refs:fdsize (Results 1 – 2 of 2) sorted by relevance
/external/strace/ |
D | desc.c | 309 int nfds, fdsize; in decode_select() local 329 fdsize = (((nfds + 7) / 8) + current_wordsize-1) & -current_wordsize; in decode_select() 334 if (verbose(tcp) && fdsize > 0) { in decode_select() 335 fds = malloc(fdsize); in decode_select() 349 if (umoven(tcp, arg, fdsize, fds) < 0) { in decode_select() 383 fds = malloc(fdsize); in decode_select() 393 if (!arg || umoven(tcp, arg, fdsize, fds) < 0) in decode_select()
|
D | pathtrace.c | 267 unsigned fdsize; in pathtrace_match() local 289 fdsize = (((nfds + 7) / 8) + current_wordsize-1) & -current_wordsize; in pathtrace_match() 290 fds = malloc(fdsize); in pathtrace_match() 297 if (umoven(tcp, args[i], fdsize, fds) < 0) { in pathtrace_match()
|