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

/freebsd-13-stable/contrib/llvm-project/lldb/source/Utility/
H A DProcessInfo.cpp25 m_gid(UINT32_MAX), m_arch(), m_pid(LLDB_INVALID_PROCESS_ID) {}
30 m_gid(UINT32_MAX), m_arch(arch), m_pid(pid) {}
39 m_pid = LLDB_INVALID_PROCESS_ID;
114 if (m_pid != LLDB_INVALID_PROCESS_ID)
115 s.Printf(" pid = %" PRIu64 "\n", m_pid);
188 if (m_pid != LLDB_INVALID_PROCESS_ID) {
189 s.Printf("%-6" PRIu64 " %-6" PRIu64 " ", m_pid, m_parent_pid);
344 io.mapRequired("pid", Info.m_pid);
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DProcessInfo.h68 lldb::pid_t GetProcessID() const { return m_pid; }
70 void SetProcessID(lldb::pid_t pid) { m_pid = pid; }
72 bool ProcessIDIsValid() const { return m_pid != LLDB_INVALID_PROCESS_ID; }
102 lldb::pid_t m_pid; member in class:lldb_private::ProcessInfo
/freebsd-13-stable/contrib/atf/atf-c/detail/
H A Dprocess.h96 pid_t m_pid; member in struct:atf_process_child
H A Dprocess.c251 c->m_pid = 0;
274 if (waitpid(c->m_pid, &status, 0) == -1)
276 c->m_pid);
288 return c->m_pid;
402 c->m_pid = pid;
/freebsd-13-stable/crypto/openssh/
H A Dmonitor.h75 pid_t m_pid; member in struct:monitor
H A Dsshd.c368 if (use_privsep && pmonitor != NULL && pmonitor->m_pid > 0)
369 kill(pmonitor->m_pid, SIGALRM);
607 pmonitor->m_pid = pid;
624 pmonitor->m_pid = -1;
628 pmonitor->m_pid = -1;
672 pmonitor->m_pid = fork();
673 if (pmonitor->m_pid == -1)
675 else if (pmonitor->m_pid != 0) {
676 verbose("User child is on pid %ld", (long)pmonitor->m_pid);
2411 pmonitor != NULL && pmonitor->m_pid >
[all...]
H A Dmonitor.c396 monitor_set_child_handler(pmonitor->m_pid);
1520 s->pid = pmonitor->m_pid;
1610 while (waitpid(pmonitor->m_pid, &status, 0) == -1)
H A Dmonitor_wrap.c115 * m_pid is only set in the privileged part, and
118 return (pmonitor && pmonitor->m_pid > 0);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DProcessMonitor.h61 lldb::pid_t GetPID() const { return m_pid; }
188 lldb::pid_t m_pid; member in class:ProcessMonitor
247 lldb::pid_t m_pid; // pid of the process to be attached. member in struct:ProcessMonitor::AttachArgs
H A DProcessMonitor.cpp683 : OperationArgs(monitor), m_pid(pid) {}
706 m_operation_thread(), m_monitor_thread(), m_pid(LLDB_INVALID_PROCESS_ID), m_terminal_fd(-1), m_operation(0) {
748 m_operation_thread(), m_monitor_thread(), m_pid(pid), m_terminal_fd(-1), m_operation(0) {
943 monitor->m_pid = pid;
982 lldb::pid_t pid = args->m_pid;
1015 tdcnt = PTRACE(PT_GETNUMLWPS, m_pid, NULL, 0);
1021 if (PTRACE(PT_GETLWPLIST, m_pid, (void *)tids, tdcnt) < 0) {
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Host/common/
H A DNativeProcessProtocol.h159 lldb::pid_t GetID() const { return m_pid; }
398 lldb::pid_t m_pid; member in class:lldb_private::NativeProcessProtocol
427 void SetID(lldb::pid_t pid) { m_pid = pid; }
/freebsd-13-stable/tests/sys/fs/fusefs/
H A Dmockfs.hh298 pid_t m_pid; member in class:MockFS
H A Dmockfs.cc440 m_pid = getpid();
820 if (pid == m_pid) {
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/
H A DNativeProcessNetBSD.cpp802 Status status = PtraceWrapper(PT_ATTACH, m_pid);
810 m_pid, nullptr, WALLSIG)) < 0)
/freebsd-13-stable/contrib/llvm-project/lldb/source/Host/common/
H A DNativeProcessProtocol.cpp28 : m_pid(pid), m_terminal_fd(terminal_fd) {

Completed in 120 milliseconds