Searched refs:PTRACE_POKEUSER (Results 1 – 6 of 6) sorted by relevance
/external/strace/ |
D | syscall.c | 1812 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)PT_GPR2, gpr2) < 0) 1816 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(EAX * 4), eax) < 0) 1820 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(RAX * 8), rax) < 0) 1825 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(PT_R8), r8) < 0) 1837 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(PT_R8), r8) < 0 || 1838 ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(PT_R10), r10) < 0) 1843 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)PT_R0, r0) < 0) 1855 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(REG_A3), a3) < 0 || 1856 ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(REG_V0), r2) < 0) 1869 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(sizeof(unsigned long)*PT_CCR), flags) < 0 || [all …]
|
D | process.c | 69 # define PTRACE_POKEUSR PTRACE_POKEUSER 699 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(ORIG_EAX * 4), new) < 0) in change_syscall() 704 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(ORIG_RAX * 8), new) < 0) in change_syscall() 708 if (ptrace(PTRACE_POKEUSER, tcp->pid, in change_syscall() 714 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(PT_GPR2), new)<0) in change_syscall() 718 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(4*PT_ORIG_D0), new)<0) in change_syscall() 730 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(REG_V0), new)<0) in change_syscall() 734 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(REG_A3), new)<0) in change_syscall() 738 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(REG_R8), new) < 0) in change_syscall() 742 if (ptrace(PTRACE_POKEUSER, tcp->pid, (char*)(REG_P0), new)<0) in change_syscall() [all …]
|
D | util.c | 1348 req = PTRACE_POKEUSER; in set_arg0() 1364 req = PTRACE_POKEUSER; in set_arg1() 1457 return ptrace (PTRACE_POKEUSER, tcp->pid, (char*)arg0_offset, val); in set_arg0() 1463 return ptrace (PTRACE_POKEUSER, tcp->pid, (char*)arg1_offset, val); in set_arg1()
|
D | defs.h | 168 #define PTRACE_POKEUSER PTRACE_POKEUSR macro
|
D | signal.c | 61 # define PTRACE_POKEUSR PTRACE_POKEUSER
|
/external/valgrind/main/coregrind/ |
D | vgdb.c | 810 res = ptrace(PTRACE_POKEUSER, pid, offset, *(long*)(pregs+offset)); in setregs()
|