/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/ |
ptrace.h | 33 PTRACE_TRACEME = 0, 34 #define PT_TRACE_ME PTRACE_TRACEME 185 For all requests except PTRACE_TRACEME, PID specifies the process to be
|
/external/elfutils/tests/ |
backtrace-child.c | 19 --ptraceme will call ptrace (PTRACE_TRACEME) in the two threads. 156 long l = ptrace (PTRACE_TRACEME, 0, NULL, NULL); 228 long l = ptrace (PTRACE_TRACEME, 0, NULL, NULL);
|
backtrace-dwarf.c | 145 long l = ptrace (PTRACE_TRACEME, 0, NULL, NULL);
|
/external/libchrome/sandbox/linux/seccomp-bpf/ |
bpf_tests_unittest.cc | 122 int ret = ptrace(PTRACE_TRACEME, -1, NULL, NULL); 138 int ret = ptrace(PTRACE_TRACEME, -1, NULL, NULL);
|
/bionic/libc/kernel/uapi/linux/ |
ptrace.h | 22 #define PTRACE_TRACEME 0
|
/external/kernel-headers/original/uapi/linux/ |
ptrace.h | 10 #define PTRACE_TRACEME 0
|
/external/valgrind/memcheck/tests/linux/ |
getregset.c | 38 if (ptrace(PTRACE_TRACEME, 0, NULL, NULL) == -1)
|
/external/ltp/testcases/kernel/syscalls/ptrace/ |
ptrace01.c | 35 * PTRACE_TRACEME & PTRACE_KILL requests. 36 * Here, we fork a child & the child does ptrace(PTRACE_TRACEME, ...). 58 * call ptrace() with PTRACE_TRACEME request 236 if ((ptrace(PTRACE_TRACEME, 0, 0, 0)) == -1) {
|
ptrace02.c | 35 * PTRACE_TRACEME & PTRACE_CONT requests. 36 * Here, we fork a child & the child does ptrace(PTRACE_TRACEME, ...). 58 * call ptrace() with PTRACE_TRACEME request 237 if ((ptrace(PTRACE_TRACEME, 0, 0, 0)) == -1) {
|
ptrace05.c | 79 if (ptrace(PTRACE_TRACEME, 0, NULL, NULL) != -1) { 95 "Failed to ptrace(PTRACE_TRACEME, ...) "
|
spawn_ptrace_child.h | 92 long ret = ptrace(PTRACE_TRACEME, 0, NULL, NULL); 94 tst_resm(TFAIL, "PTRACE_TRACEME failed");
|
/external/linux-kselftest/tools/testing/selftests/breakpoints/ |
step_after_suspend_test.c | 44 if (ptrace(PTRACE_TRACEME, 0, NULL, NULL) != 0) { 45 perror("ptrace(PTRACE_TRACEME) failed");
|
breakpoint_test_arm64.c | 45 if (ptrace(PTRACE_TRACEME, 0, NULL, NULL) != 0) { 46 perror("ptrace(PTRACE_TRACEME) failed");
|
/external/strace/xlat/ |
ptrace_cmds.h | 11 #if defined(PTRACE_TRACEME) || (defined(HAVE_DECL_PTRACE_TRACEME) && HAVE_DECL_PTRACE_TRACEME) 12 XLAT(PTRACE_TRACEME),
|
/external/compiler-rt/test/asan/TestCases/Linux/ |
ptrace.cc | 76 ptrace(PTRACE_TRACEME, 0, NULL, NULL);
|
/external/compiler-rt/test/sanitizer_common/TestCases/Linux/ |
ptrace.cc | 26 ptrace(PTRACE_TRACEME, 0, NULL, NULL);
|
/external/strace/ |
process.c | 96 if (request == PTRACE_TRACEME) {
|
/system/extras/runconuid/ |
runconuid.cpp | 72 ptrace(PTRACE_TRACEME, 0, 0, 0);
|
/external/linux-kselftest/tools/testing/selftests/x86/ |
ptrace_syscall.c | 182 if (ptrace(PTRACE_TRACEME, 0, 0, 0) != 0) 183 err(1, "PTRACE_TRACEME"); 300 if (ptrace(PTRACE_TRACEME, 0, 0, 0) != 0) 301 err(1, "PTRACE_TRACEME");
|
/external/strace/tests/ |
ptrace.c | 93 if (do_ptrace(PTRACE_TRACEME, 0, 0, 0)) 94 perror_msg_and_fail("child: PTRACE_TRACEME"); 434 do_ptrace(PTRACE_TRACEME, 0, 0, 0); 435 printf("ptrace(PTRACE_TRACEME) = %s\n", errstr);
|
/external/strace/tests-m32/ |
ptrace.c | 93 if (do_ptrace(PTRACE_TRACEME, 0, 0, 0)) 94 perror_msg_and_fail("child: PTRACE_TRACEME"); 434 do_ptrace(PTRACE_TRACEME, 0, 0, 0); 435 printf("ptrace(PTRACE_TRACEME) = %s\n", errstr);
|
/external/strace/tests-mx32/ |
ptrace.c | 93 if (do_ptrace(PTRACE_TRACEME, 0, 0, 0)) 94 perror_msg_and_fail("child: PTRACE_TRACEME"); 434 do_ptrace(PTRACE_TRACEME, 0, 0, 0); 435 printf("ptrace(PTRACE_TRACEME) = %s\n", errstr);
|
/prebuilts/go/darwin-x86/src/syscall/ |
types_darwin.go | 182 PTRACE_TRACEME = C.PT_TRACE_ME
|
types_dragonfly.go | 181 PTRACE_TRACEME = C.PT_TRACE_ME
|
types_netbsd.go | 166 PTRACE_TRACEME = C.PT_TRACE_ME
|