/external/libunwind/tests/ |
test-ptrace.c | 164 static pid_t target_pid; variable 167 kill (target_pid, SIGKILL); 211 target_pid = fork (); 212 if (!target_pid) 236 ui = _UPT_create (target_pid); 296 ptrace (PTRACE_CONT, target_pid, 0, 0); 298 ptrace (PT_CONTINUE, target_pid, (caddr_t)1, 0); 306 ptrace (PTRACE_SINGLESTEP, target_pid, 0, pending_sig); 308 ptrace (PT_STEP, target_pid, (caddr_t)1, pending_sig); 320 ptrace (PTRACE_SYSCALL, target_pid, 0, pending_sig) [all...] |
/external/chromium_org/sandbox/linux/seccomp-bpf-helpers/ |
syscall_parameters_restrictions.h | 58 // kill iff the first parameter is |target_pid|, crashing otherwise or if 60 bpf_dsl::ResultExpr RestrictKillTarget(pid_t target_pid, int sysno); 66 // |target_pid| while calling setpriority(2) / getpriority(2). 67 bpf_dsl::ResultExpr RestrictGetSetpriority(pid_t target_pid); 86 SANDBOX_EXPORT bpf_dsl::ResultExpr RestrictSchedTarget(pid_t target_pid,
|
syscall_parameters_restrictions.cc | 214 ResultExpr RestrictKillTarget(pid_t target_pid, int sysno) { 219 return If(pid == target_pid, Allow()).Else(CrashSIGSYSKill()); 244 ResultExpr RestrictGetSetpriority(pid_t target_pid) { 248 If(who == 0 || who == target_pid, Allow()).Else(Error(EPERM))) 267 ResultExpr RestrictSchedTarget(pid_t target_pid, int sysno) { 279 return If(pid == 0 || pid == target_pid, Allow())
|
/ndk/sources/android/libthread_db/gdb-6.6/ |
libthread_db.c | 135 int target_pid = proc_handle->pid; local 157 snprintf(path, sizeof path, "/proc/%d/task", target_pid); 173 if (_get_task_permitted_caps(target_pid, tid, &tid_caps) < 0) {
|
/ndk/sources/android/libthread_db/gdb-7.3.x/ |
libthread_db.c | 132 int target_pid = ps_getpid(proc_handle); local 154 snprintf(path, sizeof path, "/proc/%d/task", target_pid); 170 if (_get_task_permitted_caps(target_pid, tid, &tid_caps) < 0) {
|
/ndk/sources/android/libthread_db/gdb-7.6/ |
libthread_db.c | 144 int target_pid = ps_getpid(proc_handle); local 166 snprintf(path, sizeof path, "/proc/%d/task", target_pid); 182 if (_get_task_permitted_caps(target_pid, tid, &tid_caps) < 0) {
|
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/ |
top.c | 85 ret += SNPRINTF(bf + ret, size - ret, " (target_pid: %s",
|
/external/chromium_org/third_party/skia/platform_tools/android/bin/linux/ |
perfhost | |
/external/skia/platform_tools/android/bin/linux/ |
perfhost | |