Searched defs:target_pid (Results 1 - 4 of 4) sorted by relevance

/external/libchrome/base/trace_event/
H A Dmemory_dump_provider.h24 : target_pid(kNullProcessId),
28 // |target_pid| contains the pid of that process.
31 ProcessId target_pid; member in struct:base::trace_event::MemoryDumpProvider::Options
H A Dmemory_dump_manager.cc576 ProcessId target_pid = mdpinfo->options.target_pid; local
579 pmd_async_state->GetOrCreateMemoryDumpContainerForProcess(target_pid,
/external/libchrome/sandbox/linux/seccomp-bpf-helpers/
H A Dsyscall_parameters_restrictions.cc270 ResultExpr RestrictKillTarget(pid_t target_pid, int sysno) { argument
275 return If(pid == target_pid, Allow()).Else(CrashSIGSYSKill());
295 ResultExpr RestrictGetSetpriority(pid_t target_pid) { argument
299 Switch(who).CASES((0, target_pid), Allow()).Default(Error(EPERM)))
303 ResultExpr RestrictSchedTarget(pid_t target_pid, int sysno) { argument
316 .CASES((0, target_pid), Allow())
325 ResultExpr RestrictPrlimit64(pid_t target_pid) { argument
327 return Switch(pid).CASES((0, target_pid), Allow()).Default(CrashSIGSYS());
/external/libunwind/tests/
H A Dtest-ptrace.c164 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,
[all...]

Completed in 136 milliseconds