HomeSort by relevance Sort by last modified time
    Searched refs:ptrace (Results 1 - 25 of 233) sorted by null

1 2 3 4 5 6 7 8 910

  /external/libunwind/tests/
run-ptrace-misc 2 ./test-ptrace -c -t ./test-ptrace-misc
run-ia64-test-dyn1 2 ./test-ptrace -t ./ia64-test-dyn1
run-ptrace-mapper 2 ./test-ptrace -c -n -t ./mapper $*
  /external/linux-kselftest/tools/testing/selftests/powerpc/ptrace/
Makefile 2 TEST_GEN_PROGS := ptrace-gpr ptrace-tm-gpr ptrace-tm-spd-gpr \
3 ptrace-tar ptrace-tm-tar ptrace-tm-spd-tar ptrace-vsx ptrace-tm-vsx \
4 ptrace-tm-spd-vsx ptrace-tm-spr ptrace-hwbreak ptrace-pkey core-pkey
    [all...]
ptrace-syscall.c 3 * A ptrace test for testing PTRACE_SYSEMU, PTRACE_SETREGS and
13 #include <sys/ptrace.h>
66 * Child process is running 4 syscalls after ptrace.
74 if (ptrace(PTRACE_TRACEME, 0, 0, 0) != 0)
92 if (ptrace(PTRACE_SYSEMU, chld, 0, 0) != 0)
96 if (ptrace(PTRACE_GETREGS, chld, 0, &regs) != 0)
100 * Ptrace trapped prior to executing the syscall, thus r3 still has
127 if (ptrace(PTRACE_SETREGS, chld, 0, &regs) != 0)
130 if (ptrace(PTRACE_SYSEMU, chld, 0, 0) != 0)
134 if (ptrace(PTRACE_GETREGS, chld, 0, &regs) != 0
    [all...]
  /bionic/libc/kernel/uapi/asm-arm64/asm/
bpf_perf_event.h 21 #include <asm/ptrace.h>
  /bionic/libc/kernel/uapi/asm-generic/
bpf_perf_event.h 21 #include <linux/ptrace.h>
  /external/kernel-headers/original/uapi/asm-arm64/asm/
bpf_perf_event.h 5 #include <asm/ptrace.h>
  /external/kernel-headers/original/uapi/asm-generic/
bpf_perf_event.h 4 #include <linux/ptrace.h>
  /external/ltp/testcases/kernel/syscalls/ptrace/
ptrace.h 2 * ptrace is a fickle beast and each arch sucks in a different way
9 # include <sys/ptrace.h>
19 # include <asm/ptrace.h>
23 # include <linux/ptrace.h>
  /external/u-boot/arch/m68k/include/asm/
processor.h 4 #include <asm/ptrace.h>
  /external/u-boot/arch/powerpc/include/asm/
sigcontext.h 4 #include <asm/ptrace.h>
  /external/libunwind/src/ptrace/
_UPT_resume.c 36 return ptrace (PTRACE_CONT, ui->pid, 0, 0);
38 return ptrace(PT_CONTINUE, ui->pid, (caddr_t)1, 0);
_UPT_internal.h 37 #include <sys/ptrace.h>
44 #include <libunwind-ptrace.h>
_UPT_access_reg.c 59 /* The Linux ptrace represents the statc NaT bits as a single word. */
65 nat_bits = ptrace (PTRACE_PEEKUSER, pid, PT_NAT_BITS, 0);
80 ptrace (PTRACE_POKEUSER, pid, PT_NAT_BITS, nat_bits);
105 psr = ptrace (PTRACE_PEEKUSER, pid, PT_CR_IPSR, 0);
117 ptrace (PTRACE_POKEUSER, pid, PT_CR_IIP, ip);
118 ptrace (PTRACE_POKEUSER, pid, PT_CR_IPSR, psr);
129 ip = ptrace (PTRACE_PEEKUSER, pid, PT_CR_IIP, 0);
150 /* Account for the fact that ptrace() expects bsp to point
153 cfm = ptrace (PTRACE_PEEKUSER, pid, PT_CFM, 0);
166 ptrace (PTRACE_POKEUSER, pid, PT_AR_BSP, bsp)
    [all...]
  /external/strace/
upoke.c 30 #include "ptrace.h"
35 if (ptrace(PTRACE_POKEUSER, tcp->pid, off, val)) {
  /external/u-boot/arch/nios2/cpu/
traps.c 7 #include <asm/ptrace.h>
  /external/openssh/
platform-tracing.c 24 #include <sys/ptrace.h>
37 /* Disable ptrace on Linux without sgid bit */
48 if (ptrace(PT_DENY_ATTACH, 0, 0, 0) == -1 && strict)
  /external/compiler-rt/test/sanitizer_common/TestCases/Linux/
ptrace.cc 6 #include <sys/ptrace.h>
14 #include <asm/ptrace.h>
18 // GLIBC 2.20+ sys/user does not include asm/ptrace.h
19 #include <asm/ptrace.h>
26 ptrace(PTRACE_TRACEME, 0, NULL, NULL);
34 res = ptrace(PTRACE_GETREGS, pid, NULL, &regs);
40 res = ptrace(PTRACE_GETFPREGS, pid, NULL, &fpregs);
48 res = ptrace((enum __ptrace_request)PTRACE_GETREGS, pid, NULL, &regs);
62 res = ptrace((enum __ptrace_request)PTRACE_GETFPREGS, pid, NULL, &fpregs);
68 res = ptrace((enum __ptrace_request)PTRACE_GETVFPREGS, pid, 0, regbuf)
    [all...]
  /external/elfutils/backends/
sparc_initreg.c 36 # include <asm/ptrace.h>
37 # include <sys/ptrace.h>
60 if (ptrace (PTRACE_GETREGS, tid, &regs, 0) == -1)
94 locals_outs[i] = ptrace (PTRACE_PEEKDATA, tid,
107 Dwarf_Word tuple = ptrace (PTRACE_PEEKDATA, tid,
arm_initreg.c 37 # include <sys/ptrace.h>
43 # include <sys/ptrace.h>
64 if (ptrace (PTRACE_GETREGS, tid, NULL, &user_regs) != 0)
80 if (ptrace (PTRACE_GETREGSET, tid, NT_PRSTATUS, &iovec) != 0)
  /bionic/libc/bionic/
ptrace.cpp 30 #include <sys/ptrace.h>
34 long ptrace(int req, ...) { function
  /bionic/libc/include/sys/
ptrace.h 34 #include <linux/ptrace.h>
62 long ptrace(int __request, ...);
  /cts/hostsidetests/securitybulletin/securityPatch/CVE-2014-9803/
poc.c 23 #include <sys/ptrace.h>
42 ptrace(PTRACE_TRACEME, 0, 0, 0);
62 status = ptrace(PTRACE_PEEKDATA, child, mem, 0);
65 ptrace(PTRACE_DETACH, child, 0, 0);
  /external/bcc/tests/python/
test_trace2.c 3 #include <linux/ptrace.h>

Completed in 1452 milliseconds

1 2 3 4 5 6 7 8 910