Symbol: sys_ptrace
include/linux/syscalls.h
643
asmlinkage long sys_ptrace(long request, long pid, unsigned long addr,
include/uapi/asm-generic/unistd.h
330
__SC_COMP(__NR_ptrace, sys_ptrace, compat_sys_ptrace)
tools/include/nolibc/sys/ptrace.h
30
return __sysret(sys_ptrace(op, pid, addr, data));
tools/include/uapi/asm-generic/unistd.h
330
__SC_COMP(__NR_ptrace, sys_ptrace, compat_sys_ptrace)
tools/testing/selftests/powerpc/ptrace/ptrace-perf-hwbreak.c
46
return sys_ptrace(PTRACE_TRACEME, 0, 0, 0);
tools/testing/selftests/powerpc/ptrace/ptrace-perf-hwbreak.c
51
return sys_ptrace(PTRACE_GETREGS, pid, 0, (unsigned long)result);
tools/testing/selftests/powerpc/ptrace/ptrace-perf-hwbreak.c
56
return sys_ptrace(PTRACE_SETREGS, pid, 0, (unsigned long)result);
tools/testing/selftests/powerpc/ptrace/ptrace-perf-hwbreak.c
61
return sys_ptrace(PTRACE_CONT, pid, 0, signal);
tools/testing/selftests/powerpc/ptrace/ptrace-perf-hwbreak.c
66
return sys_ptrace(PTRACE_SINGLESTEP, pid, 0, signal);
tools/testing/selftests/powerpc/ptrace/ptrace-perf-hwbreak.c
71
return sys_ptrace(PPC_PTRACE_GETHWDBGINFO, pid, 0, (unsigned long)dbginfo);
tools/testing/selftests/powerpc/ptrace/ptrace-perf-hwbreak.c
76
return sys_ptrace(PPC_PTRACE_SETHWDEBUG, pid, 0, (unsigned long)bp_info);
tools/testing/selftests/powerpc/ptrace/ptrace-perf-hwbreak.c
81
return sys_ptrace(PPC_PTRACE_DELHWDEBUG, pid, 0L, bp_id);
tools/testing/selftests/powerpc/ptrace/ptrace.h
466
ret = sys_ptrace(PTRACE_PEEKUSER, child, addr, (unsigned long)p);
tools/testing/selftests/powerpc/ptrace/ptrace.h
474
ret = sys_ptrace(PTRACE_PEEKUSER, child, addr, (unsigned long)&addr);
tools/testing/selftests/powerpc/ptrace/ptrace.h
491
ret = sys_ptrace(PTRACE_POKEUSER, child, addr, *p);
tools/testing/selftests/powerpc/ptrace/ptrace.h
499
ret = sys_ptrace(PTRACE_POKEUSER, child, addr, addr);
tools/testing/selftests/ptrace/get_set_sud.c
28
ASSERT_EQ(0, sys_ptrace(PTRACE_TRACEME, 0, 0, 0)) {
tools/testing/selftests/ptrace/get_set_sud.c
40
ret = sys_ptrace(PTRACE_GET_SYSCALL_USER_DISPATCH_CONFIG, child,
tools/testing/selftests/ptrace/get_set_sud.c
54
ret = sys_ptrace(PTRACE_SET_SYSCALL_USER_DISPATCH_CONFIG, child,
tools/testing/selftests/ptrace/get_set_sud.c
60
ret = sys_ptrace(PTRACE_GET_SYSCALL_USER_DISPATCH_CONFIG, child,
tools/testing/selftests/ptrace/get_syscall_info.c
151
ASSERT_EQ(0, sys_ptrace(PTRACE_SETOPTIONS, pid, 0,
tools/testing/selftests/ptrace/get_syscall_info.c
155
ASSERT_LT(0, (rc = sys_ptrace(PTRACE_GET_SYSCALL_INFO,
tools/testing/selftests/ptrace/get_syscall_info.c
178
ASSERT_LT(0, (rc = sys_ptrace(PTRACE_GET_SYSCALL_INFO,
tools/testing/selftests/ptrace/get_syscall_info.c
263
ASSERT_EQ(0, sys_ptrace(PTRACE_SYSCALL, pid, 0, 0)) {
tools/testing/selftests/ptrace/get_syscall_info.c
86
ASSERT_EQ(0, sys_ptrace(PTRACE_TRACEME, 0, 0, 0)) {
tools/testing/selftests/ptrace/peeksiginfo.c
122
ret = sys_ptrace(PTRACE_PEEKSIGINFO, child, &arg, siginfo);
tools/testing/selftests/ptrace/peeksiginfo.c
188
if (sys_ptrace(PTRACE_ATTACH, child, NULL, NULL) == -1)
tools/testing/selftests/ptrace/peeksiginfo.c
213
if (sys_ptrace(PTRACE_KILL, child, NULL, NULL) == -1)
tools/testing/selftests/ptrace/peeksiginfo.c
73
ret = sys_ptrace(PTRACE_PEEKSIGINFO, child, &arg, addr_rw);
tools/testing/selftests/ptrace/peeksiginfo.c
83
ret = sys_ptrace(PTRACE_PEEKSIGINFO, child, &arg,
tools/testing/selftests/ptrace/peeksiginfo.c
91
ret = sys_ptrace(PTRACE_PEEKSIGINFO, child, &arg, addr_ro);
tools/testing/selftests/ptrace/set_syscall_info.c
335
ASSERT_EQ(0, sys_ptrace(PTRACE_TRACEME, 0, 0, 0)) {
tools/testing/selftests/ptrace/set_syscall_info.c
410
ASSERT_EQ(0, sys_ptrace(PTRACE_SETOPTIONS, tracee_pid,
tools/testing/selftests/ptrace/set_syscall_info.c
420
ASSERT_LT(0, (rc = sys_ptrace(PTRACE_GET_SYSCALL_INFO,
tools/testing/selftests/ptrace/set_syscall_info.c
444
ASSERT_EQ(0, sys_ptrace(PTRACE_SET_SYSCALL_INFO,
tools/testing/selftests/ptrace/set_syscall_info.c
453
ASSERT_LT(0, (rc = sys_ptrace(PTRACE_GET_SYSCALL_INFO,
tools/testing/selftests/ptrace/set_syscall_info.c
482
ASSERT_EQ(0, sys_ptrace(PTRACE_SET_SYSCALL_INFO,
tools/testing/selftests/ptrace/set_syscall_info.c
491
ASSERT_LT(0, (rc = sys_ptrace(PTRACE_GET_SYSCALL_INFO,
tools/testing/selftests/ptrace/set_syscall_info.c
511
ASSERT_EQ(0, sys_ptrace(PTRACE_SYSCALL, tracee_pid, 0, 0)) {