Searched refs:target_pid (Results 1 - 8 of 8) sorted by relevance

/external/libchrome/base/trace_event/
H A Dmemory_dump_provider.h29 Options() : target_pid(kNullProcessId) {}
30 explicit Options(ProcessId target_pid) : target_pid(target_pid) {} argument
36 ProcessId target_pid; member in struct:base::trace_event::MemoryDumpProvider::Options
H A Dmemory_dump_manager.cc446 ProcessId target_pid = mdpinfo->options.target_pid; local
448 pmd_async_state->GetOrCreateMemoryDumpContainerForProcess(target_pid);
H A Dmemory_dump_manager_unittest.cc846 options.target_pid = 123;
851 options.target_pid = 456;
/external/libchrome/sandbox/linux/seccomp-bpf-helpers/
H A Dsyscall_parameters_restrictions.h58 // kill iff the first parameter is |target_pid|, crashing otherwise or if
60 SANDBOX_EXPORT bpf_dsl::ResultExpr RestrictKillTarget(pid_t target_pid,
67 // |target_pid| while calling setpriority(2) / getpriority(2).
68 SANDBOX_EXPORT bpf_dsl::ResultExpr RestrictGetSetpriority(pid_t target_pid);
78 SANDBOX_EXPORT bpf_dsl::ResultExpr RestrictSchedTarget(pid_t target_pid,
82 // or target_pid.
83 SANDBOX_EXPORT bpf_dsl::ResultExpr RestrictPrlimit64(pid_t target_pid);
H A Dsyscall_parameters_restrictions.cc233 ResultExpr RestrictKillTarget(pid_t target_pid, int sysno) { argument
238 return If(pid == target_pid, Allow()).Else(CrashSIGSYSKill());
263 ResultExpr RestrictGetSetpriority(pid_t target_pid) { argument
267 Switch(who).CASES((0, target_pid), Allow()).Default(Error(EPERM)))
271 ResultExpr RestrictSchedTarget(pid_t target_pid, int sysno) { argument
284 .CASES((0, target_pid), Allow())
293 ResultExpr RestrictPrlimit64(pid_t target_pid) { argument
295 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...]
/external/valgrind/memcheck/tests/solaris/
H A Dscalar_lwp_sigqueue_pid.stderr.exp4 Syscall param lwp_sigqueue(target_pid) contains uninitialised byte(s)
/external/valgrind/coregrind/m_syswrap/
H A Dsyswrap-solaris.c6766 /* int lwp_sigqueue(pid_t target_pid, id_t target_lwp, int signal,
6771 PRE_REG_READ6(long, "lwp_sigqueue", vki_pid_t, target_pid,

Completed in 331 milliseconds