HomeSort by relevance Sort by last modified time
    Searched refs:PTRACE_GETREGSET (Results 26 - 43 of 43) sorted by null

12

  /prebuilts/ndk/current/platforms/android-24/arch-x86/usr/include/linux/
ptrace.h 44 #define PTRACE_GETREGSET 0x4204
  /prebuilts/ndk/current/platforms/android-24/arch-x86_64/usr/include/linux/
ptrace.h 44 #define PTRACE_GETREGSET 0x4204
  /external/ltrace/sysdeps/linux-gnu/aarch64/
regs.c 40 return ptrace(PTRACE_GETREGSET, proc->pid, NT_PRSTATUS, &iovec) < 0
61 return ptrace(PTRACE_GETREGSET, proc->pid, NT_FPREGSET, &iovec) < 0
  /external/compiler-rt/test/asan/TestCases/Linux/
ptrace.cc 85 # define __PTRACE_REQUEST PTRACE_GETREGSET
101 # define __PTRACE_FPREQUEST PTRACE_GETREGSET
105 res = ptrace((enum __ptrace_request)PTRACE_GETREGSET, pid, (void*)NT_FPREGSET,
  /external/ltrace/sysdeps/linux-gnu/metag/
trace.c 84 if (ptrace(PTRACE_GETREGSET, proc->pid, NT_PRSTATUS,
190 if (ptrace(PTRACE_GETREGSET, proc->pid,
212 if (ptrace(PTRACE_GETREGSET, proc->pid,
259 if (ptrace(PTRACE_GETREGSET, proc->pid,
285 if (ptrace(PTRACE_GETREGSET, proc->pid,
404 if (ptrace(PTRACE_GETREGSET, proc->pid, NT_PRSTATUS, (long)&iov))
  /external/compiler-rt/test/sanitizer_common/TestCases/Linux/
ptrace.cc 81 res = ptrace(PTRACE_GETREGSET, pid, (void*)NT_PRSTATUS, (void*)&regset_io);
89 res = ptrace(PTRACE_GETREGSET, pid, (void*)NT_FPREGSET, (void*)&regset_io);
  /bionic/libc/kernel/uapi/linux/
ptrace.h 44 #define PTRACE_GETREGSET 0x4204
  /external/elfutils/backends/
arm_initreg.c 78 if (ptrace (PTRACE_GETREGSET, tid, NT_PRSTATUS, &iovec) != 0)
  /external/kernel-headers/original/uapi/linux/
ptrace.h 44 * ret = ptrace(PTRACE_GETREGSET/PTRACE_SETREGSET, pid, NT_XXX_TYPE, &iov);
49 #define PTRACE_GETREGSET 0x4204
  /external/google-breakpad/src/client/linux/minidump_writer/
linux_ptrace_dumper.cc 191 #ifdef PTRACE_GETREGSET
195 if (sys_ptrace(PTRACE_GETREGSET, tid, (void*)NT_PRSTATUS, (void*)&io) == -1) {
201 if (sys_ptrace(PTRACE_GETREGSET, tid, (void*)NT_FPREGSET, (void*)&io) == -1) {
  /external/strace/xlat/
ptrace_cmds.h 86 #if defined(PTRACE_GETREGSET) || (defined(HAVE_DECL_PTRACE_GETREGSET) && HAVE_DECL_PTRACE_GETREGSET)
87 XLAT(PTRACE_GETREGSET),
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_stoptheworld_linux_libcdep.cc 491 bool isErr = internal_iserror(internal_ptrace(PTRACE_GETREGSET, tid,
sanitizer_platform_limits_posix.cc 380 #if defined(PTRACE_GETREGSET) && defined(PTRACE_SETREGSET)
381 int ptrace_getregset = PTRACE_GETREGSET; member in namespace:__sanitizer
384 int ptrace_getregset = -1; member in namespace:__sanitizer
386 #endif // PTRACE_GETREGSET/PTRACE_SETREGSET
    [all...]
  /external/libunwind/src/ptrace/
_UPT_access_reg.c 374 if (ptrace(PTRACE_GETREGSET, pid, (void*)NT_PRSTATUS, (void*)&io) == -1)
  /system/core/libmemunreachable/
ThreadCapture.cpp 221 if (ptrace(PTRACE_GETREGSET, tid, reinterpret_cast<void*>(NT_PRSTATUS), &iovec)) {
  /external/strace/
syscall.c 1227 return ptrace(PTRACE_GETREGSET, pid, NT_PRSTATUS,
1235 return ptrace(PTRACE_GETREGSET, pid, NT_PRSTATUS, &io);
1247 /* Try PTRACE_GETREGSET first, fallback to PTRACE_GETREGS. */
1264 /* Assume that PTRACE_GETREGSET works. */
    [all...]
  /external/valgrind/coregrind/
vgdb-invoker-ptrace.c 45 #ifdef PTRACE_GETREGSET
54 // The only platform on which we must use PTRACE_GETREGSET is arm64.
56 // -1 means we will check that PTRACE_GETREGSET works.
543 // Similar but for PTRACE_GETREGSET
558 DEBUG(1, "PTRACE_GETREGSET defined, not used (yet?) by vgdb\n");
567 DEBUG(1, "getregs PTRACE_GETREGSET sizeof(elf_regs) %zu\n",
572 res = ptrace (PTRACE_GETREGSET, pid, NT_PRSTATUS, &iovec);
575 // First call to PTRACE_GETREGSET successful =>
577 DEBUG(1, "detected a working PTRACE_GETREGSET\n");
585 ERROR(errno, "PTRACE_GETREGSET %ld\n", res)
    [all...]
  /cts/tests/tests/os/jni/seccomp-tests/tests/
seccomp_bpf_tests.c 1103 EXPECT_EQ(0, ptrace(PTRACE_GETREGSET, tracee, NT_PRSTATUS, &iov)) {
1104 TH_LOG("PTRACE_GETREGSET failed");
1120 ret = ptrace(PTRACE_GETREGSET, tracee, NT_PRSTATUS, &iov);
    [all...]

Completed in 1215 milliseconds

12