Searched refs:fdsize (Results 1 – 2 of 2) sorted by relevance
/external/strace/ |
D | desc.c | 316 int nfds, fdsize; in decode_select() local 337 fdsize = (((nfds + 7) / 8) + current_wordsize-1) & -current_wordsize; in decode_select() 342 if (fdsize > 0) { in decode_select() 343 fds = malloc(fdsize); in decode_select() 357 if (umoven(tcp, arg, fdsize, (char *) fds) < 0) { in decode_select() 391 fds = malloc(fdsize); in decode_select() 401 if (!arg || umoven(tcp, arg, fdsize, (char *) 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, (char *) fds) < 0) { in pathtrace_match()
|