/external/mesa3d/src/gallium/drivers/r300/compiler/tests/ |
D | rc_test_helpers.c | 61 struct match_info { struct 116 struct match_info Negate; 117 struct match_info Abs; 118 struct match_info File; 119 struct match_info Index; 120 struct match_info Swizzle; 249 struct match_info File; 250 struct match_info Index; 251 struct match_info WriteMask; 351 struct match_info Opcode; [all …]
|
/external/llvm-project/lldb/source/Host/openbsd/ |
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()
|
/external/llvm-project/lldb/source/Commands/ |
D | CommandObjectPlatform.cpp | 1126 m_options.match_info.GetProcessInfo().GetProcessID(); in DoExecute() 1143 platform_sp->FindProcesses(m_options.match_info, proc_infos); in DoExecute() 1146 m_options.match_info.GetProcessInfo().GetName(); in DoExecute() 1148 switch (m_options.match_info.GetNameMatchType()) { in DoExecute() 1214 : Options(), match_info(), show_args(false), verbose(false) {} in CommandOptions() 1228 match_info.GetProcessInfo().SetProcessID(id); in SetOptionValue() 1235 match_info.GetProcessInfo().SetParentProcessID(id); in SetOptionValue() 1243 match_info.GetProcessInfo().SetUserID(success ? id : UINT32_MAX); in SetOptionValue() 1250 match_info.GetProcessInfo().SetEffectiveUserID(success ? id in SetOptionValue() 1259 match_info.GetProcessInfo().SetGroupID(success ? id : UINT32_MAX); in SetOptionValue() [all …]
|
D | CommandCompletions.cpp | 684 ProcessInstanceInfoMatch match_info; in ProcessIDs() local 685 platform_sp->FindProcesses(match_info, process_infos); in ProcessIDs() 698 ProcessInstanceInfoMatch match_info; in ProcessNames() local 699 platform_sp->FindProcesses(match_info, process_infos); in ProcessNames()
|
/external/llvm-project/lldb/source/Host/freebsd/ |
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()
|
/external/llvm-project/lldb/source/Host/netbsd/ |
D | HostNetBSD.cpp | 179 uint32_t Host::FindProcessesImpl(const ProcessInstanceInfoMatch &match_info, in FindProcessesImpl() argument 185 match_info.GetMatchAllUsers() || in FindProcessesImpl() 203 ProcessInstanceInfoMatch match_info_noname{match_info}; in FindProcessesImpl() 244 GetNetBSDProcessArgs(&match_info, process_info)) { in FindProcessesImpl() 246 if (match_info.Matches(process_info)) in FindProcessesImpl()
|
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
D | GDBRemoteCommunicationServerCommon.cpp | 339 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 …]
|
D | GDBRemoteCommunicationClient.cpp | 2167 const ProcessInstanceInfoMatch &match_info, in FindProcesses() argument 2174 if (!match_info.MatchAllProcesses()) { in FindProcesses() 2176 const char *name = match_info.GetProcessInfo().GetName(); in FindProcesses() 2180 NameMatch name_match_type = match_info.GetNameMatchType(); in FindProcesses() 2213 if (match_info.GetProcessInfo().ProcessIDIsValid()) in FindProcesses() 2215 match_info.GetProcessInfo().GetProcessID()); in FindProcesses() 2216 if (match_info.GetProcessInfo().ParentProcessIDIsValid()) in FindProcesses() 2218 match_info.GetProcessInfo().GetParentProcessID()); in FindProcesses() 2219 if (match_info.GetProcessInfo().UserIDIsValid()) in FindProcesses() 2220 packet.Printf("uid:%u;", match_info.GetProcessInfo().GetUserID()); in FindProcesses() [all …]
|
/external/llvm-project/lldb/source/Host/windows/ |
D | Host.cpp | 134 uint32_t Host::FindProcessesImpl(const ProcessInstanceInfoMatch &match_info, in FindProcessesImpl() argument 158 if (match_info.MatchAllProcesses() || match_info.Matches(process)) in FindProcessesImpl()
|
/external/llvm-project/lldb/include/lldb/Host/ |
D | Host.h | 177 static uint32_t FindProcesses(const ProcessInstanceInfoMatch &match_info, 268 static uint32_t FindProcessesImpl(const ProcessInstanceInfoMatch &match_info,
|
/external/llvm-project/lldb/source/Host/linux/ |
D | Host.cpp | 223 uint32_t Host::FindProcessesImpl(const ProcessInstanceInfoMatch &match_info, in FindProcessesImpl() argument 232 bool all_users = match_info.GetMatchAllUsers(); in FindProcessesImpl() 263 if (match_info.Matches(process_info)) { in FindProcessesImpl()
|
/external/llvm-project/lldb/source/Target/ |
D | RemoteAwarePlatform.cpp | 398 RemoteAwarePlatform::FindProcesses(const ProcessInstanceInfoMatch &match_info, in FindProcesses() argument 401 return Platform::FindProcesses(match_info, process_infos); in FindProcesses() 403 return m_remote_platform_sp->FindProcesses(match_info, process_infos); in FindProcesses()
|
D | Platform.cpp | 1001 uint32_t Platform::FindProcesses(const ProcessInstanceInfoMatch &match_info, in FindProcesses() argument 1007 match_count = Host::FindProcesses(match_info, process_infos); in FindProcesses()
|
D | Process.cpp | 2910 ProcessInstanceInfoMatch match_info; in Attach() local 2911 match_info.GetProcessInfo() = attach_info; in Attach() 2912 match_info.SetNameMatchType(NameMatch::Equals); in Attach() 2913 platform_sp->FindProcesses(match_info, process_infos); in Attach() 2919 match_info.GetProcessInfo().GetExecutableFile().GetPath( in Attach()
|
/external/llvm-project/lldb/include/lldb/Target/ |
D | RemoteAwarePlatform.h | 88 uint32_t FindProcesses(const ProcessInstanceInfoMatch &match_info,
|
D | Platform.h | 423 virtual uint32_t FindProcesses(const ProcessInstanceInfoMatch &match_info,
|
/external/llvm-project/lldb/source/Plugins/Platform/MacOSX/ |
D | PlatformAppleSimulator.h | 82 FindProcesses(const lldb_private::ProcessInstanceInfoMatch &match_info,
|
D | PlatformAppleSimulator.cpp | 490 const ProcessInstanceInfoMatch &match_info, in FindProcesses() argument 494 const uint32_t n = Host::FindProcesses(match_info, all_osx_process_infos); in FindProcesses()
|
/external/llvm-project/lldb/source/Host/common/ |
D | Host.cpp | 707 uint32_t Host::FindProcesses(const ProcessInstanceInfoMatch &match_info, in FindProcesses() argument 716 uint32_t result = FindProcessesImpl(match_info, process_infos); in FindProcesses()
|
/external/llvm-project/lldb/source/Plugins/Platform/gdb-server/ |
D | PlatformRemoteGDBServer.h | 59 uint32_t FindProcesses(const ProcessInstanceInfoMatch &match_info,
|
D | PlatformRemoteGDBServer.cpp | 375 const ProcessInstanceInfoMatch &match_info, in FindProcesses() argument 377 return m_gdb_client.FindProcesses(match_info, process_infos); in FindProcesses()
|
/external/llvm-project/lldb/source/Host/macosx/objcxx/ |
D | Host.mm | 591 uint32_t Host::FindProcessesImpl(const ProcessInstanceInfoMatch &match_info, 613 bool all_users = match_info.GetMatchAllUsers(); 650 if (!match_info.UserIDsMatch(process_info) || 651 !match_info.ProcessIDsMatch(process_info)) 657 if (GetMacOSXProcessArgs(&match_info, process_info)) { 658 if (match_info.Matches(process_info))
|