HomeSort by relevance Sort by last modified time
    Searched refs:target_pid (Results 1 - 11 of 11) sorted by null

  /external/libchrome/base/trace_event/
memory_dump_provider.h 24 : target_pid(kNullProcessId),
28 // |target_pid| contains the pid of that process.
31 ProcessId target_pid; member in struct:base::trace_event::MemoryDumpProvider::Options
memory_dump_manager.cc 576 ProcessId target_pid = mdpinfo->options.target_pid; local
579 pmd_async_state->GetOrCreateMemoryDumpContainerForProcess(target_pid,
    [all...]
memory_dump_manager_unittest.cc     [all...]
  /external/libchrome/sandbox/linux/seccomp-bpf-helpers/
syscall_parameters_restrictions.h 58 // 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);
syscall_parameters_restrictions.cc 270 ResultExpr RestrictKillTarget(pid_t target_pid, int sysno) {
275 return If(pid == target_pid, Allow()).Else(CrashSIGSYSKill());
295 ResultExpr RestrictGetSetpriority(pid_t target_pid) {
299 Switch(who).CASES((0, target_pid), Allow()).Default(Error(EPERM)))
303 ResultExpr RestrictSchedTarget(pid_t target_pid, int sysno) {
316 .CASES((0, target_pid), Allow())
325 ResultExpr RestrictPrlimit64(pid_t target_pid) {
327 return Switch(pid).CASES((0, target_pid), Allow()).Default(CrashSIGSYS());
  /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/valgrind/memcheck/tests/solaris/
scalar_lwp_sigqueue_pid.stderr.exp 4 Syscall param lwp_sigqueue(target_pid) contains uninitialised byte(s)
  /development/python-packages/gdbrunner/
__init__.py 149 target_pid, run_cmd, debug_socket, port, user=None):
156 target_pid: PID of device process to attach to.
166 assert target_pid is None or run_cmd is None
176 if target_pid is not None:
177 gdbserver_cmd += ["--attach", str(target_pid)]
  /development/scripts/
gdbclient.py 42 "-p", dest="target_pid", metavar="PID", type=int,
126 if args.target_pid:
128 pid = args.target_pid
244 target_pid=pid, run_cmd=run_cmd, debug_socket=debug_socket,
  /system/core/debuggerd/
debuggerd_test.cpp 90 static void tombstoned_intercept(pid_t target_pid, unique_fd* intercept_fd, unique_fd* output_fd) {
97 InterceptRequest req = {.pid = target_pid};
  /external/valgrind/coregrind/m_syswrap/
syswrap-solaris.c     [all...]

Completed in 511 milliseconds