Searched refs:proc_info (Results 1 - 13 of 13) sorted by relevance

/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerCommon.h158 CreateProcessInfoResponse (const ProcessInstanceInfo &proc_info,
162 CreateProcessInfoResponse_DebugServerStyle (const ProcessInstanceInfo &proc_info,
H A DGDBRemoteCommunicationServerCommon.cpp278 ProcessInstanceInfo proc_info; local
279 if (Host::GetProcessInfo (pid, proc_info))
282 CreateProcessInfoResponse (proc_info, response);
1151 GDBRemoteCommunicationServerCommon::CreateProcessInfoResponse (const ProcessInstanceInfo &proc_info, argument
1155 proc_info.GetProcessID(),
1156 proc_info.GetParentProcessID(),
1157 proc_info.GetUserID(),
1158 proc_info.GetGroupID(),
1159 proc_info.GetEffectiveUserID(),
1160 proc_info
1175 CreateProcessInfoResponse_DebugServerStyle( const ProcessInstanceInfo &proc_info, StreamString &response) argument
[all...]
H A DGDBRemoteCommunicationServerPlatform.cpp349 ProcessInstanceInfo proc_info;
350 if (!Host::GetProcessInfo (pid, proc_info))
354 CreateProcessInfoResponse_DebugServerStyle(proc_info, response);
H A DGDBRemoteCommunicationServerLLGS.cpp1077 ProcessInstanceInfo proc_info;
1078 if (!Host::GetProcessInfo (pid, proc_info))
1082 CreateProcessInfoResponse_DebugServerStyle(proc_info, response);
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/Host/
H A DHost.h233 GetProcessInfo (lldb::pid_t pid, ProcessInstanceInfo &proc_info);
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/Platform/FreeBSD/
H A DPlatformFreeBSD.h126 ProcessInstanceInfo &proc_info) override;
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/Platform/NetBSD/
H A DPlatformNetBSD.h126 ProcessInstanceInfo &proc_info) override;
/freebsd-11.0-release/usr.bin/kdump/
H A Dkdump.c147 struct proc_info struct
149 TAILQ_ENTRY(proc_info) info;
154 static TAILQ_HEAD(trace_procs, proc_info) trace_procs;
469 struct proc_info *pi;
479 pi = malloc(sizeof(struct proc_info));
504 struct proc_info *pi;
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.h89 GetProcessInfo (lldb::pid_t pid, ProcessInstanceInfo &proc_info) override;
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectPlatform.cpp1427 ProcessInstanceInfo proc_info; variable
1428 if (platform_sp->GetProcessInfo (pid, proc_info))
1431 proc_info.DumpAsTableRow(ostrm, platform_sp.get(), m_options.show_args, m_options.verbose);
1723 ProcessInstanceInfo proc_info; variable
1724 if (platform_sp->GetProcessInfo (pid, proc_info))
1727 proc_info.Dump (ostrm, platform_sp.get());
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Target/
H A DProcess.cpp580 ProcessInstanceInfoMatch::Matches (const ProcessInstanceInfo &proc_info) const
582 if (!NameMatches (proc_info.GetName()))
586 m_match_info.GetProcessID() != proc_info.GetProcessID())
590 m_match_info.GetParentProcessID() != proc_info.GetParentProcessID())
594 m_match_info.GetUserID() != proc_info.GetUserID())
598 m_match_info.GetGroupID() != proc_info.GetGroupID())
602 m_match_info.GetEffectiveUserID() != proc_info.GetEffectiveUserID())
606 m_match_info.GetEffectiveGroupID() != proc_info.GetEffectiveGroupID())
610 !m_match_info.GetArchitecture().IsCompatibleMatch(proc_info.GetArchitecture()))
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/Target/
H A DPlatform.h552 GetProcessInfo (lldb::pid_t pid, ProcessInstanceInfo &proc_info);
H A DProcess.h521 Matches (const ProcessInstanceInfo &proc_info) const;

Completed in 227 milliseconds