HomeSort by relevance Sort by last modified time
    Searched full:fdsize (Results 1 - 2 of 2) sorted by null

  /external/strace/
desc.c 309 int nfds, fdsize; local
327 * Instead of args[0], use nfds for fd count, fdsize for array lengths.
329 fdsize = (((nfds + 7) / 8) + current_wordsize-1) & -current_wordsize;
334 if (verbose(tcp) && fdsize > 0) {
335 fds = malloc(fdsize);
349 if (umoven(tcp, arg, fdsize, fds) < 0) {
383 fds = malloc(fdsize);
393 if (!arg || umoven(tcp, arg, fdsize, fds) < 0)
pathtrace.c 267 unsigned fdsize; local
289 fdsize = (((nfds + 7) / 8) + current_wordsize-1) & -current_wordsize;
290 fds = malloc(fdsize);
297 if (umoven(tcp, args[i], fdsize, fds) < 0) {

Completed in 1215 milliseconds