Home
last modified time | relevance | path

Searched refs:match_info (Results 1 – 20 of 20) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Host/openbsd/
H A DHost.cpp126 uint32_t Host::FindProcessesImpl(const ProcessInstanceInfoMatch &match_info, in FindProcessesImpl() argument
148 bool all_users = match_info.GetMatchAllUsers(); in FindProcessesImpl()
175 if (match_info.Matches(process_info) && in FindProcessesImpl()
176 GetOpenBSDProcessArgs(&match_info, process_info)) { in FindProcessesImpl()
178 if (match_info.Matches(process_info)) in FindProcessesImpl()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectPlatform.cpp1236 lldb::pid_t pid = m_options.match_info.GetProcessInfo().GetProcessID(); in DoExecute()
1252 platform_sp->FindProcesses(m_options.match_info, proc_infos); in DoExecute()
1255 m_options.match_info.GetProcessInfo().GetName(); in DoExecute()
1257 switch (m_options.match_info.GetNameMatchType()) { in DoExecute()
1326 match_info.GetProcessInfo().SetProcessID(id); in SetOptionValue()
1333 match_info.GetProcessInfo().SetParentProcessID(id); in SetOptionValue()
1341 match_info.GetProcessInfo().SetUserID(success ? id : UINT32_MAX); in SetOptionValue()
1348 match_info.GetProcessInfo().SetEffectiveUserID(success ? id in SetOptionValue()
1357 match_info.GetProcessInfo().SetGroupID(success ? id : UINT32_MAX); in SetOptionValue()
1364 match_info.GetProcessInfo().SetEffectiveGroupID(success ? id in SetOptionValue()
[all …]
H A DCommandCompletions.cpp720 ProcessInstanceInfoMatch match_info; in ProcessIDs() local
721 platform_sp->FindProcesses(match_info, process_infos); in ProcessIDs()
734 ProcessInstanceInfoMatch match_info; in ProcessNames() local
735 platform_sp->FindProcesses(match_info, process_infos); in ProcessNames()
/freebsd/contrib/llvm-project/lldb/source/Host/freebsd/
H A DHost.cpp149 uint32_t Host::FindProcessesImpl(const ProcessInstanceInfoMatch &match_info, in FindProcessesImpl() argument
155 bool all_users = match_info.GetMatchAllUsers() || (our_uid == 0); in FindProcessesImpl()
175 ProcessInstanceInfoMatch match_info_noname{match_info}; in FindProcessesImpl()
216 GetFreeBSDProcessArgs(&match_info, process_info)) { in FindProcessesImpl()
218 if (match_info.Matches(process_info)) in FindProcessesImpl()
/freebsd/contrib/llvm-project/lldb/source/Host/netbsd/
H A DHostNetBSD.cpp175 uint32_t Host::FindProcessesImpl(const ProcessInstanceInfoMatch &match_info, in FindProcessesImpl() argument
181 match_info.GetMatchAllUsers() || in FindProcessesImpl()
199 ProcessInstanceInfoMatch match_info_noname{match_info}; in FindProcessesImpl()
240 GetNetBSDProcessArgs(&match_info, process_info)) { in FindProcessesImpl()
242 if (match_info.Matches(process_info)) in FindProcessesImpl()
/freebsd/contrib/llvm-project/lldb/source/Host/aix/
H A DHost.cpp135 uint32_t Host::FindProcessesImpl(const ProcessInstanceInfoMatch &match_info, in FindProcessesImpl() argument
144 bool all_users = match_info.GetMatchAllUsers(); in FindProcessesImpl()
169 if (match_info.Matches(process_info)) in FindProcessesImpl()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerCommon.cpp339 ProcessInstanceInfoMatch match_info; in Handle_qfProcessInfo() local
350 match_info.GetProcessInfo().GetExecutableFile().SetFile( in Handle_qfProcessInfo()
360 match_info.SetNameMatchType(name_match); in Handle_qfProcessInfo()
367 match_info.GetProcessInfo().SetProcessID(pid); in Handle_qfProcessInfo()
372 match_info.GetProcessInfo().SetParentProcessID(pid); in Handle_qfProcessInfo()
377 match_info.GetProcessInfo().SetUserID(uid); in Handle_qfProcessInfo()
382 match_info.GetProcessInfo().SetGroupID(gid); in Handle_qfProcessInfo()
387 match_info.GetProcessInfo().SetEffectiveUserID(uid); in Handle_qfProcessInfo()
392 match_info.GetProcessInfo().SetEffectiveGroupID(gid); in Handle_qfProcessInfo()
394 match_info.SetMatchAllUsers( in Handle_qfProcessInfo()
[all …]
H A DGDBRemoteCommunicationClient.cpp2305 const ProcessInstanceInfoMatch &match_info, in FindProcesses() argument
2312 if (!match_info.MatchAllProcesses()) { in FindProcesses()
2314 const char *name = match_info.GetProcessInfo().GetName(); in FindProcesses()
2318 NameMatch name_match_type = match_info.GetNameMatchType(); in FindProcesses()
2351 if (match_info.GetProcessInfo().ProcessIDIsValid()) in FindProcesses()
2353 match_info.GetProcessInfo().GetProcessID()); in FindProcesses()
2354 if (match_info.GetProcessInfo().ParentProcessIDIsValid()) in FindProcesses()
2356 match_info.GetProcessInfo().GetParentProcessID()); in FindProcesses()
2357 if (match_info.GetProcessInfo().UserIDIsValid()) in FindProcesses()
2358 packet.Printf("uid:%u;", match_info.GetProcessInfo().GetUserID()); in FindProcesses()
[all …]
H A DGDBRemoteCommunicationServerLLGS.cpp399 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 DRemoteAwarePlatform.cpp246 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 DProcess.cpp2989 ProcessInstanceInfoMatch match_info; in Attach() local
2990 match_info.GetProcessInfo() = attach_info; in Attach()
2991 match_info.SetNameMatchType(NameMatch::Equals); in Attach()
2992 platform_sp->FindProcesses(match_info, process_infos); in Attach()
2998 match_info.GetProcessInfo().GetExecutableFile().GetPath( in Attach()
H A DPlatform.cpp915 uint32_t Platform::FindProcesses(const ProcessInstanceInfoMatch &match_info, in FindProcesses() argument
921 match_count = Host::FindProcesses(match_info, process_infos); in FindProcesses()
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/
H A DHost.h176 static uint32_t FindProcesses(const ProcessInstanceInfoMatch &match_info,
277 static uint32_t FindProcessesImpl(const ProcessInstanceInfoMatch &match_info,
/freebsd/share/dtrace/
H A Dipfw.d144 uint32_t match_info; member
192 match_info = (p->flags & IPFW_ARGS_REF) ? p->rule.info : 0;
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/QemuUser/
H A DPlatformQemuUser.h48 uint32_t FindProcesses(const ProcessInstanceInfoMatch &match_info, in FindProcesses() argument
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DRemoteAwarePlatform.h90 uint32_t FindProcesses(const ProcessInstanceInfoMatch &match_info,
H A DPlatform.h423 virtual uint32_t FindProcesses(const ProcessInstanceInfoMatch &match_info,
/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DHost.cpp628 uint32_t Host::FindProcesses(const ProcessInstanceInfoMatch &match_info, in FindProcesses() argument
630 return FindProcessesImpl(match_info, process_infos); in FindProcesses()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.h53 uint32_t FindProcesses(const ProcessInstanceInfoMatch &match_info,
H A DPlatformRemoteGDBServer.cpp303 const ProcessInstanceInfoMatch &match_info, in FindProcesses() argument
306 return m_gdb_client_up->FindProcesses(match_info, process_infos); in FindProcesses()