Searched refs:m_pid (Results 1 - 11 of 11) sorted by relevance

/freebsd-10.1-release/contrib/atf/atf-c/detail/
H A Dprocess.h101 pid_t m_pid; member in struct:atf_process_child
H A Dprocess.c254 c->m_pid = 0;
277 if (waitpid(c->m_pid, &status, 0) == -1)
279 c->m_pid);
291 return c->m_pid;
405 c->m_pid = pid;
/freebsd-10.1-release/crypto/openssh/
H A Dmonitor.h79 pid_t m_pid; member in struct:monitor
H A Dsshd.c378 if (use_privsep && pmonitor != NULL && pmonitor->m_pid > 0)
379 kill(pmonitor->m_pid, SIGALRM);
689 pmonitor->m_pid = pid;
703 pmonitor->m_pid = -1;
707 pmonitor->m_pid = -1;
755 pmonitor->m_pid = fork();
756 if (pmonitor->m_pid == -1)
758 else if (pmonitor->m_pid != 0) {
759 verbose("User child is on pid %ld", (long)pmonitor->m_pid);
2580 if (use_privsep && privsep_is_preauth && pmonitor->m_pid >
[all...]
H A Dmonitor.c456 monitor_set_child_handler(pmonitor->m_pid);
1446 s->pid = pmonitor->m_pid;
1708 while (waitpid(pmonitor->m_pid, &status, 0) == -1)
H A Dmonitor_wrap.c119 * m_pid is only set in the privileged part, and
122 return (pmonitor && pmonitor->m_pid > 0);
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/
H A DProcessMonitor.h68 GetPID() const { return m_pid; }
218 lldb::pid_t m_pid; member in class:ProcessMonitor
284 lldb::pid_t m_pid; // pid of the process to be attached. member in struct:ProcessMonitor::AttachArgs
H A DProcessMonitor.cpp785 : OperationArgs(monitor), m_pid(pid) { }
814 m_pid(LLDB_INVALID_PROCESS_ID),
868 m_pid(pid),
1084 monitor->m_pid = pid;
1125 lldb::pid_t pid = args->m_pid;
1165 tdcnt = PTRACE(PT_GETNUMLWPS, m_pid, NULL, 0);
1171 if (PTRACE(PT_GETLWPLIST, m_pid, (void *)tids, tdcnt) < 0) {
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Host/
H A DDebug.h258 m_pid (pid),
309 return m_pid;
397 lldb::pid_t m_pid; member in class:lldb_private::NativeProcessProtocol
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/Target/
H A DProcess.h124 m_pid (LLDB_INVALID_PROCESS_ID)
137 m_pid (pid)
150 m_pid = LLDB_INVALID_PROCESS_ID;
253 return m_pid;
259 m_pid = pid;
265 return m_pid != LLDB_INVALID_PROCESS_ID;
329 lldb::pid_t m_pid; member in class:lldb_private::ProcessInfo
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Target/
H A DProcess.cpp244 if (m_pid != LLDB_INVALID_PROCESS_ID)
245 s.Printf (" pid = %" PRIu64 "\n", m_pid);
332 if (m_pid != LLDB_INVALID_PROCESS_ID)
335 s.Printf ("%-6" PRIu64 " %-6" PRIu64 " ", m_pid, m_parent_pid);

Completed in 113 milliseconds