/external/ltrace/sysdeps/linux-gnu/metag/ |
D | regs.c | 39 if (ptrace(PTRACE_GETREGSET, proc->pid, NT_PRSTATUS, (long)&iov)) in get_instruction_pointer() 53 if (ptrace(PTRACE_GETREGSET, proc->pid, NT_PRSTATUS, (long)&iov)) in set_instruction_pointer() 71 if (ptrace(PTRACE_GETREGSET, proc->pid, NT_PRSTATUS, (long)&iov)) in get_stack_pointer() 85 if (ptrace(PTRACE_GETREGSET, proc->pid, NT_PRSTATUS, (long)&iov)) in get_return_addr()
|
D | trace.c | 84 if (ptrace(PTRACE_GETREGSET, proc->pid, NT_PRSTATUS, in syscall_p() 190 if (ptrace(PTRACE_GETREGSET, proc->pid, in metag_next_pcs() 212 if (ptrace(PTRACE_GETREGSET, proc->pid, in metag_next_pcs() 259 if (ptrace(PTRACE_GETREGSET, proc->pid, in metag_next_pcs() 285 if (ptrace(PTRACE_GETREGSET, proc->pid, in metag_next_pcs() 404 if (ptrace(PTRACE_GETREGSET, proc->pid, NT_PRSTATUS, (long)&iov)) in gimme_arg()
|
/external/strace/ |
D | process.c | 84 if (tcp->u_arg[0] == PTRACE_GETREGSET in SYS_FUNC() 115 case PTRACE_GETREGSET: in SYS_FUNC() 137 case PTRACE_GETREGSET: in SYS_FUNC()
|
D | ptrace.h | 141 #ifndef PTRACE_GETREGSET 142 # define PTRACE_GETREGSET 0x4204 macro
|
D | syscall.c | 1227 return ptrace(PTRACE_GETREGSET, pid, NT_PRSTATUS, in get_regset() 1235 return ptrace(PTRACE_GETREGSET, pid, NT_PRSTATUS, &io); in get_regset()
|
D | NEWS | 102 * Implemented PTRACE_GETREGSET API support on s390/s390x. 164 Older versions without a decent PTRACE_GETREGSET support will not work. 218 * Implemented more reliable PTRACE_GETREGSET-based process personality
|
/external/compiler-rt/test/asan/TestCases/Linux/ |
D | ptrace.cc | 85 # define __PTRACE_REQUEST PTRACE_GETREGSET in main() 101 # define __PTRACE_FPREQUEST PTRACE_GETREGSET in main() 105 res = ptrace((enum __ptrace_request)PTRACE_GETREGSET, pid, (void*)NT_FPREGSET, in main()
|
/external/elfutils/backends/ |
D | aarch64_initreg.c | 63 if (ptrace (PTRACE_GETREGSET, tid, NT_PRSTATUS, &iovec) != 0) in aarch64_set_initial_registers_tid() 80 if (ptrace (PTRACE_GETREGSET, tid, NT_FPREGSET, &iovec) != 0) in aarch64_set_initial_registers_tid()
|
D | arm_initreg.c | 78 if (ptrace (PTRACE_GETREGSET, tid, NT_PRSTATUS, &iovec) != 0) in arm_set_initial_registers_tid()
|
/external/ltrace/sysdeps/linux-gnu/aarch64/ |
D | regs.c | 40 return ptrace(PTRACE_GETREGSET, proc->pid, NT_PRSTATUS, &iovec) < 0 in aarch64_read_gregs() 61 return ptrace(PTRACE_GETREGSET, proc->pid, NT_FPREGSET, &iovec) < 0 in aarch64_read_fregs()
|
/external/compiler-rt/test/sanitizer_common/TestCases/Linux/ |
D | ptrace.cc | 81 res = ptrace(PTRACE_GETREGSET, pid, (void*)NT_PRSTATUS, (void*)®set_io); in main() 89 res = ptrace(PTRACE_GETREGSET, pid, (void*)NT_FPREGSET, (void*)®set_io); in main()
|
/external/google-breakpad/src/client/linux/minidump_writer/ |
D | linux_ptrace_dumper.cc | 191 #ifdef PTRACE_GETREGSET in GetThreadInfoByIndex() 195 if (sys_ptrace(PTRACE_GETREGSET, tid, (void*)NT_PRSTATUS, (void*)&io) == -1) { in GetThreadInfoByIndex() 201 if (sys_ptrace(PTRACE_GETREGSET, tid, (void*)NT_FPREGSET, (void*)&io) == -1) { in GetThreadInfoByIndex()
|
/external/kernel-headers/original/uapi/linux/ |
D | ptrace.h | 49 #define PTRACE_GETREGSET 0x4204 macro
|
/external/strace/xlat/ |
D | ptrace_cmds.h | 86 #if defined(PTRACE_GETREGSET) || (defined(HAVE_DECL_PTRACE_GETREGSET) && HAVE_DECL_PTRACE_GETREGSET) 87 XLAT(PTRACE_GETREGSET),
|
D | ptrace_cmds.in | 26 PTRACE_GETREGSET
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_stoptheworld_linux_libcdep.cc | 491 bool isErr = internal_iserror(internal_ptrace(PTRACE_GETREGSET, tid, in GetRegistersAndSP()
|
D | sanitizer_platform_limits_posix.cc | 380 #if defined(PTRACE_GETREGSET) && defined(PTRACE_SETREGSET) 381 int ptrace_getregset = PTRACE_GETREGSET;
|
/external/libunwind/src/ptrace/ |
D | _UPT_access_reg.c | 374 if (ptrace(PTRACE_GETREGSET, pid, (void*)NT_PRSTATUS, (void*)&io) == -1) in _UPT_access_reg()
|
/external/valgrind/coregrind/ |
D | vgdb-invoker-ptrace.c | 45 #ifdef PTRACE_GETREGSET 572 res = ptrace (PTRACE_GETREGSET, pid, NT_PRSTATUS, &iovec); in getregs()
|