Home | History | Annotate | Download | only in strace

Lines Matching defs:rax

782        static long rax;
1380 if (upeek(pid, 8*RAX, &rax) < 0)
1383 rax = (long int)(int)rax; /* sign extend from 32 bits */
1384 if (rax != -ENOSYS && !(tcp->flags & TCB_INSYSCALL)) {
1386 fprintf(stderr, "stray syscall exit: rax = %ld\n", rax);
1473 if (rax < 0 && -rax < nerrnos) {
1475 u_error = -rax;
1478 tcp->u_rval = rax;
1662 u_error = tcp->status.PR_REG[RAX];
1665 tcp->u_rval = tcp->status.PR_REG[RAX];
1713 rax = error ? -error : rval;
1714 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(RAX * 8), rax) < 0)