Home | History | Annotate | Download | only in strace

Lines Matching refs:RAX

721 	static long rax;
1425 if (upeek(tcp, 8*RAX, &rax) < 0)
1428 rax = (long int)(int)rax; /* sign extend from 32 bits */
1429 if (rax != -ENOSYS && !(tcp->flags & TCB_INSYSCALL)) {
1431 fprintf(stderr, "stray syscall exit: rax = %ld\n", rax);
1556 if (check_errno && is_negated_errno(rax)) {
1558 u_error = -rax;
1561 tcp->u_rval = rax;
1770 u_error = tcp->status.PR_REG[RAX];
1773 tcp->u_rval = tcp->status.PR_REG[RAX];
1819 rax = error ? -error : rval;
1820 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(RAX * 8), rax) < 0)