Lines Matching refs:pid
40 tracee_func (int pid) in tracee_func() argument
45 sprintf (str, "cat /proc/%d/maps", pid); in tracee_func()
52 kill (pid, SIGSTOP); in tracee_func()
59 tracer_func (int pid) in tracer_func() argument
84 TEST_VERIFY_EXIT (ptrace (PTRACE_PEEKUSR_AREA, pid, &parea) == 0); in tracer_func()
85 TEST_VERIFY_EXIT (ptrace (PTRACE_GET_LAST_BREAK, pid, NULL, &last_break) in tracer_func()
90 TEST_VERIFY_EXIT (ptrace (PTRACE_GETREGSET, pid, NT_PRSTATUS, &parea2) in tracer_func()
137 ret = ptrace (req_singleblock, pid, NULL, buf); in tracer_func()
146 ret = ptrace (req_singleblock, pid, NULL, NULL); in tracer_func()
160 TEST_VERIFY_EXIT (ptrace (PTRACE_CONT, pid, NULL, NULL) == 0); in tracer_func()
168 int pid; in do_test() local
169 pid = xfork (); in do_test()
170 if (pid) in do_test()
171 tracer_func (pid); in do_test()