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

  /external/strace/
mem.c 64 tprintf("%#lx", tcp->u_arg[0]);
78 tprintf("%lu", tcp->u_arg[0]);
189 print_mmap(tcp,u_arg)
191 long *u_arg;
195 if (!u_arg[0])
198 tprintf("%#lx, ", u_arg[0]);
200 tprintf("%lu, ", u_arg[1]);
202 printflags(mmap_prot, u_arg[2], "PROT_???");
206 printxval(mmap_flags, u_arg[3] & MAP_TYPE, "MAP_???");
207 addflags(mmap_flags, u_arg[3] & ~MAP_TYPE)
223 long u_arg[6]; local
280 long *u_arg = tcp->u_arg; local
    [all...]
defs.h 271 long u_arg[MAX_ARGS]; /* System call arguments */ member in struct:tcb
576 memmove (&tcp->u_arg[arg], &tcp->u_arg[arg + 1], \
577 (tcp->u_nargs - arg - 1) * sizeof tcp->u_arg[0]); \
585 /* _l refers to the lower numbered u_arg,
586 * _h refers to the higher numbered u_arg

Completed in 18 milliseconds