Home | History | Annotate | Download | only in strace

Lines Matching refs:valp

1312 get_arg0 (struct tcb *tcp, arg_setup_state *state, long *valp)
1317 ret = upeek (tcp, PT_R11, valp);
1321 sizeof(long), (void *) valp);
1326 get_arg1 (struct tcb *tcp, arg_setup_state *state, long *valp)
1331 ret = upeek (tcp, PT_R9, valp);
1335 sizeof(long), (void *) valp);
1387 # define get_arg0(tcp, state, valp) (*(valp) = (state)->u_regs[U_REG_O0], 0)
1388 # define get_arg1(tcp, state, valp) (*(valp) = (state)->u_regs[U_REG_O1], 0)
1449 # define get_arg0(tcp, cookie, valp) \
1450 (upeek ((tcp), arg0_offset, (valp)))
1451 # define get_arg1(tcp, cookie, valp) \
1452 (upeek ((tcp), arg1_offset, (valp)))