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

1 2 3 4 5 6 7 8 91011>>

  /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_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-sp
    [all...]
ptrace.h 2 * Ptrace interface test helper functions
18 #include <sys/ptrace.h>
63 /* Basic ptrace operations */
68 ret = ptrace(PTRACE_ATTACH, child, NULL, NULL);
70 perror("ptrace(PTRACE_ATTACH) failed");
85 ret = ptrace(PTRACE_DETACH, child, NULL, NULL);
87 perror("ptrace(PTRACE_DETACH) failed");
97 ret = ptrace(PTRACE_CONT, child, NULL, NULL);
99 perror("ptrace(PTRACE_CONT) failed");
120 ret = ptrace(PTRACE_GETREGSET, child, NT_PPC_TAR, &iov)
    [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/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...]
_UPT_access_mem.c 48 ptrace (PTRACE_POKEDATA, pid, (void*) (uintptr_t) addr, (void*) (uintptr_t) *val);
64 reg1 = ptrace (PTRACE_PEEKDATA, pid, (void*) (uintptr_t) addr, 0);
67 reg2 = ptrace (PTRACE_PEEKDATA, pid, (void*) (uintptr_t) (addr + sizeof(long)), 0);
73 *val = ptrace (PTRACE_PEEKDATA, pid, (void*) addr, 0);
100 if (ptrace(PT_IO, pid, (caddr_t)&iod, 0) == -1)
  /external/strace/
upoke.c 30 #include "ptrace.h"
35 if (ptrace(PTRACE_POKEUSER, tcp->pid, off, val)) {
upeek.c 36 #include "ptrace.h"
44 val = ptrace(PTRACE_PEEKUSER, (pid_t) tcp->pid, (void *) off, 0);
  /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 36 # include <sys/ptrace.h>
42 # include <sys/ptrace.h>
62 if (ptrace (PTRACE_GETREGS, tid, NULL, &user_regs) != 0)
78 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, ...);
  /system/core/libunwindstack/tests/
TestUtils.h 21 #include <sys/ptrace.h>
44 if (ptrace(PTRACE_GETSIGINFO, pid, 0, &si) == 0) {
  /external/strace/linux/aarch64/
set_scno.c 17 int rc = ptrace(PTRACE_SETREGSET, tcp->pid, NT_ARM_SYSTEM_CALL, &io);
  /external/strace/linux/arm/
set_scno.c 13 int rc = ptrace(PTRACE_SET_SYSCALL, tcp->pid, NULL, (unsigned long) n);
  /external/strace/linux/sparc64/
get_scno.c 8 trap = ptrace(PTRACE_PEEKTEXT, tcp->pid, (void *) sparc_regs.tpc, 0);

Completed in 501 milliseconds

1 2 3 4 5 6 7 8 91011>>