Searched defs:u_arg (Results 1 - 2 of 2) sorted by relevance

/external/strace/
H A Dmem.c51 tprintf("%#lx", tcp->u_arg[0]);
60 print_mmap(struct tcb *tcp, long *u_arg, unsigned long long offset) argument
64 if (!u_arg[0])
67 tprintf("%#lx, ", u_arg[0]);
69 tprintf("%lu, ", u_arg[1]);
71 printflags(mmap_prot, u_arg[2], "PROT_???");
75 printxval(mmap_flags, u_arg[3] & MAP_TYPE, "MAP_???");
76 addflags(mmap_flags, u_arg[3] & ~MAP_TYPE);
78 printflags(mmap_flags, u_arg[3], "MAP_???");
82 printfd(tcp, u_arg[
101 long u_arg[6]; local
133 long u_arg[5]; local
[all...]
H A Ddefs.h410 long u_arg[MAX_ARGS]; /* System call arguments */ member in struct:tcb
656 /* a refers to the lower numbered u_arg,
657 * b refers to the higher numbered u_arg
791 * tprintf("%d", (int) tcp->u_arg[N]) to print fds, pids etc.

Completed in 156 milliseconds