/freebsd/contrib/llvm-project/lldb/source/Host/openbsd/ |
H A D | Host.cpp | 143 uint32_t Host::FindProcessesImpl(const ProcessInstanceInfoMatch &match_info, in FindProcessesImpl() argument 165 bool all_users = match_info.GetMatchAllUsers(); in FindProcessesImpl() 192 if (match_info.Matches(process_info) && in FindProcessesImpl() 193 GetOpenBSDProcessArgs(&match_info, process_info)) { in FindProcessesImpl() 195 if (match_info.Matches(process_info)) in FindProcessesImpl()
|
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectPlatform.cpp | 1238 lldb::pid_t pid = m_options.match_info.GetProcessInfo().GetProcessID(); in DoExecute() 1254 platform_sp->FindProcesses(m_options.match_info, proc_infos); in DoExecute() 1257 m_options.match_info.GetProcessInfo().GetName(); in DoExecute() 1259 switch (m_options.match_info.GetNameMatchType()) { in DoExecute() 1329 match_info.GetProcessInfo().SetProcessID(id); in SetOptionValue() 1336 match_info.GetProcessInfo().SetParentProcessID(id); in SetOptionValue() 1344 match_info.GetProcessInfo().SetUserID(success ? id : UINT32_MAX); in SetOptionValue() 1351 match_info.GetProcessInfo().SetEffectiveUserID(success ? id in SetOptionValue() 1360 match_info.GetProcessInfo().SetGroupID(success ? id : UINT32_MAX); in SetOptionValue() 1367 match_info.GetProcessInfo().SetEffectiveGroupID(success ? id in SetOptionValue() [all …]
|
H A D | CommandCompletions.cpp | 711 ProcessInstanceInfoMatch match_info; in ProcessIDs() local 712 platform_sp->FindProcesses(match_info, process_infos); in ProcessIDs() 725 ProcessInstanceInfoMatch match_info; in ProcessNames() local 726 platform_sp->FindProcesses(match_info, process_infos); in ProcessNames()
|
/freebsd/contrib/llvm-project/lldb/source/Host/freebsd/ |
H A D | Host.cpp | 153 uint32_t Host::FindProcessesImpl(const ProcessInstanceInfoMatch &match_info, in FindProcessesImpl() argument 159 bool all_users = match_info.GetMatchAllUsers() || (our_uid == 0); in FindProcessesImpl() 179 ProcessInstanceInfoMatch match_info_noname{match_info}; in FindProcessesImpl() 220 GetFreeBSDProcessArgs(&match_info, process_info)) { in FindProcessesImpl() 222 if (match_info.Matches(process_info)) in FindProcessesImpl()
|
/freebsd/contrib/llvm-project/lldb/source/Host/netbsd/ |
H A D | HostNetBSD.cpp | 181 uint32_t Host::FindProcessesImpl(const ProcessInstanceInfoMatch &match_info, in FindProcessesImpl() 187 match_info.GetMatchAllUsers() || in FindProcessesImpl() 205 ProcessInstanceInfoMatch match_info_noname{match_info}; in FindProcessesImpl() 246 GetNetBSDProcessArgs(&match_info, process_info)) { in FindProcessesImpl() 248 if (match_info.Matches(process_info)) in FindProcessesImpl() 180 FindProcessesImpl(const ProcessInstanceInfoMatch & match_info,ProcessInstanceInfoList & process_infos) FindProcessesImpl() argument
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
H A D | GDBRemoteCommunicationServerCommon.cpp | 336 ProcessInstanceInfoMatch match_info; in Handle_qfProcessInfo() local 347 match_info.GetProcessInfo().GetExecutableFile().SetFile( in Handle_qfProcessInfo() 357 match_info.SetNameMatchType(name_match); in Handle_qfProcessInfo() 364 match_info.GetProcessInfo().SetProcessID(pid); in Handle_qfProcessInfo() 369 match_info.GetProcessInfo().SetParentProcessID(pid); in Handle_qfProcessInfo() 374 match_info.GetProcessInfo().SetUserID(uid); in Handle_qfProcessInfo() 379 match_info.GetProcessInfo().SetGroupID(gid); in Handle_qfProcessInfo() 384 match_info.GetProcessInfo().SetEffectiveUserID(uid); in Handle_qfProcessInfo() 389 match_info.GetProcessInfo().SetEffectiveGroupID(gid); in Handle_qfProcessInfo() 391 match_info.SetMatchAllUsers( in Handle_qfProcessInfo() [all …]
|
H A D | GDBRemoteCommunicationClient.cpp | 2286 const ProcessInstanceInfoMatch &match_info, in FindProcesses() argument 2293 if (!match_info.MatchAllProcesses()) { in FindProcesses() 2295 const char *name = match_info.GetProcessInfo().GetName(); in FindProcesses() 2299 NameMatch name_match_type = match_info.GetNameMatchType(); in FindProcesses() 2332 if (match_info.GetProcessInfo().ProcessIDIsValid()) in FindProcesses() 2334 match_info.GetProcessInfo().GetProcessID()); in FindProcesses() 2335 if (match_info.GetProcessInfo().ParentProcessIDIsValid()) in FindProcesses() 2337 match_info.GetProcessInfo().GetParentProcessID()); in FindProcesses() 2338 if (match_info.GetProcessInfo().UserIDIsValid()) in FindProcesses() 2339 packet.Printf("uid:%u;", match_info.GetProcessInfo().GetUserID()); in FindProcesses() [all …]
|
H A D | GDBRemoteCommunicationServerLLGS.cpp | 399 ProcessInstanceInfoMatch match_info; in AttachWaitProcess() local 400 match_info.GetProcessInfo().GetExecutableFile().SetFile( in AttachWaitProcess() 402 match_info.SetNameMatchType(NameMatch::Equals); in AttachWaitProcess() 408 Host::FindProcesses(match_info, exclusion_list); in AttachWaitProcess() 427 if (Host::FindProcesses(match_info, loop_process_list)) { in AttachWaitProcess()
|
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | RemoteAwarePlatform.cpp | 246 RemoteAwarePlatform::FindProcesses(const ProcessInstanceInfoMatch &match_info, in FindProcesses() argument 249 return m_remote_platform_sp->FindProcesses(match_info, process_infos); in FindProcesses() 250 return Platform::FindProcesses(match_info, process_infos); in FindProcesses()
|
H A D | Process.cpp | 3023 ProcessInstanceInfoMatch match_info; in Attach() local 3024 match_info.GetProcessInfo() = attach_info; in Attach() 3025 match_info.SetNameMatchType(NameMatch::Equals); in Attach() 3026 platform_sp->FindProcesses(match_info, process_infos); in Attach() 3032 match_info.GetProcessInfo().GetExecutableFile().GetPath( in Attach()
|
H A D | Platform.cpp | 912 uint32_t Platform::FindProcesses(const ProcessInstanceInfoMatch &match_info, in FindProcesses() argument 918 match_count = Host::FindProcesses(match_info, process_infos); in FindProcesses()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/ |
H A D | Host.h | 157 static uint32_t FindProcesses(const ProcessInstanceInfoMatch &match_info, 256 static uint32_t FindProcessesImpl(const ProcessInstanceInfoMatch &match_info,
|
/freebsd/share/dtrace/ |
H A D | ipfw.d | 142 uint32_t match_info; member 190 match_info = (p->flags & IPFW_ARGS_REF) ? p->rule.info : 0;
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/QemuUser/ |
H A D | PlatformQemuUser.h | 48 uint32_t FindProcesses(const ProcessInstanceInfoMatch &match_info, in FindProcesses() argument
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
H A D | RemoteAwarePlatform.h | 90 uint32_t FindProcesses(const ProcessInstanceInfoMatch &match_info,
|
H A D | Platform.h | 420 virtual uint32_t FindProcesses(const ProcessInstanceInfoMatch &match_info,
|
/freebsd/contrib/llvm-project/lldb/source/Host/common/ |
H A D | Host.cpp | 644 uint32_t Host::FindProcesses(const ProcessInstanceInfoMatch &match_info, in FindProcesses() argument 646 return FindProcessesImpl(match_info, process_infos); in FindProcesses()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/ |
H A D | PlatformRemoteGDBServer.h | 53 uint32_t FindProcesses(const ProcessInstanceInfoMatch &match_info,
|
H A D | PlatformRemoteGDBServer.cpp | 310 const ProcessInstanceInfoMatch &match_info, in FindProcesses() argument 313 return m_gdb_client_up->FindProcesses(match_info, process_infos); in FindProcesses()
|