/external/lldb/source/Commands/ |
D | CommandObjectPlatform.cpp | 532 lldb::pid_t pid = m_options.match_info.GetProcessInfo().GetProcessID(); in DoExecute() 551 … const uint32_t matches = platform_sp->FindProcesses (m_options.match_info, proc_infos); in DoExecute() 553 const char *match_name = m_options.match_info.GetProcessInfo().GetName(); in DoExecute() 556 switch (m_options.match_info.GetNameMatchType()) in DoExecute() 618 match_info () in CommandOptions() 637 …match_info.GetProcessInfo().SetProcessID (Args::StringToUInt32 (option_arg, LLDB_INVALID_PROCESS_I… in SetOptionValue() 643 …match_info.GetProcessInfo().SetParentProcessID (Args::StringToUInt32 (option_arg, LLDB_INVALID_PRO… in SetOptionValue() 649 …match_info.GetProcessInfo().SetUserID (Args::StringToUInt32 (option_arg, UINT32_MAX, 0, &success)); in SetOptionValue() 655 …match_info.GetProcessInfo().SetEffectiveUserID (Args::StringToUInt32 (option_arg, UINT32_MAX, 0, &… in SetOptionValue() 661 …match_info.GetProcessInfo().SetGroupID (Args::StringToUInt32 (option_arg, UINT32_MAX, 0, &success)… in SetOptionValue() [all …]
|
D | CommandObjectProcess.cpp | 492 ProcessInstanceInfoMatch match_info; in HandleOptionArgumentCompletion() local 495 … match_info.GetProcessInfo().GetExecutableFile().SetFile(partial_name, false); in HandleOptionArgumentCompletion() 496 match_info.SetNameMatchType(eNameMatchStartsWith); in HandleOptionArgumentCompletion() 498 platform_sp->FindProcesses (match_info, process_infos); in HandleOptionArgumentCompletion()
|
/external/mesa3d/src/gallium/drivers/r300/compiler/tests/ |
D | rc_test_helpers.c | 25 struct match_info { struct 70 struct match_info Negate; 71 struct match_info Abs; 72 struct match_info File; 73 struct match_info Index; 74 struct match_info Swizzle; 201 struct match_info File; 202 struct match_info Index; 203 struct match_info WriteMask; 297 struct match_info Opcode; [all …]
|
/external/lldb/source/Plugins/Process/gdb-remote/ |
D | GDBRemoteCommunicationServer.cpp | 328 ProcessInstanceInfoMatch match_info; in Handle_qfProcessInfo() local 343 match_info.GetProcessInfo().GetExecutableFile().SetFile(value.c_str(), false); in Handle_qfProcessInfo() 349 match_info.SetNameMatchType (eNameMatchEquals); in Handle_qfProcessInfo() 353 match_info.SetNameMatchType (eNameMatchStartsWith); in Handle_qfProcessInfo() 357 match_info.SetNameMatchType (eNameMatchEndsWith); in Handle_qfProcessInfo() 361 match_info.SetNameMatchType (eNameMatchContains); in Handle_qfProcessInfo() 365 match_info.SetNameMatchType (eNameMatchRegularExpression); in Handle_qfProcessInfo() 374 …match_info.GetProcessInfo().SetProcessID (Args::StringToUInt32(value.c_str(), LLDB_INVALID_PROCESS… in Handle_qfProcessInfo() 378 …match_info.GetProcessInfo().SetParentProcessID (Args::StringToUInt32(value.c_str(), LLDB_INVALID_P… in Handle_qfProcessInfo() 382 …match_info.GetProcessInfo().SetUserID (Args::StringToUInt32(value.c_str(), UINT32_MAX, 0, &success… in Handle_qfProcessInfo() [all …]
|
D | GDBRemoteCommunicationClient.cpp | 1899 GDBRemoteCommunicationClient::FindProcesses (const ProcessInstanceInfoMatch &match_info, in FindProcesses() argument 1908 if (!match_info.MatchAllProcesses()) in FindProcesses() 1911 const char *name = match_info.GetProcessInfo().GetName(); in FindProcesses() 1916 NameMatchType name_match_type = match_info.GetNameMatchType(); in FindProcesses() 1951 if (match_info.GetProcessInfo().ProcessIDIsValid()) in FindProcesses() 1952 packet.Printf("pid:%" PRIu64 ";",match_info.GetProcessInfo().GetProcessID()); in FindProcesses() 1953 if (match_info.GetProcessInfo().ParentProcessIDIsValid()) in FindProcesses() 1954 … packet.Printf("parent_pid:%" PRIu64 ";",match_info.GetProcessInfo().GetParentProcessID()); in FindProcesses() 1955 if (match_info.GetProcessInfo().UserIDIsValid()) in FindProcesses() 1956 packet.Printf("uid:%u;",match_info.GetProcessInfo().GetUserID()); in FindProcesses() [all …]
|
/external/lldb/source/Plugins/Platform/FreeBSD/ |
D | PlatformFreeBSD.cpp | 445 PlatformFreeBSD::FindProcesses (const ProcessInstanceInfoMatch &match_info, in FindProcesses() argument 452 match_count = Platform::FindProcesses (match_info, process_infos); in FindProcesses() 458 match_count = m_remote_platform_sp->FindProcesses (match_info, process_infos); in FindProcesses()
|
D | PlatformFreeBSD.h | 120 FindProcesses (const lldb_private::ProcessInstanceInfoMatch &match_info,
|
/external/lldb/source/Host/linux/ |
D | Host.cpp | 245 Host::FindProcesses (const ProcessInstanceInfoMatch &match_info, ProcessInstanceInfoList &process_i… in FindProcesses() argument 255 bool all_users = match_info.GetMatchAllUsers(); in FindProcesses() 287 if (match_info.Matches (process_info)) in FindProcesses()
|
/external/lldb/source/Plugins/Platform/gdb-server/ |
D | PlatformRemoteGDBServer.cpp | 284 PlatformRemoteGDBServer::FindProcesses (const ProcessInstanceInfoMatch &match_info, in FindProcesses() argument 287 return m_gdb_client.FindProcesses (match_info, process_infos); in FindProcesses()
|
D | PlatformRemoteGDBServer.h | 85 FindProcesses (const lldb_private::ProcessInstanceInfoMatch &match_info,
|
/external/lldb/source/Plugins/Platform/MacOSX/ |
D | PlatformiOSSimulator.h | 95 FindProcesses (const lldb_private::ProcessInstanceInfoMatch &match_info,
|
D | PlatformRemoteiOS.h | 97 FindProcesses (const lldb_private::ProcessInstanceInfoMatch &match_info,
|
D | PlatformDarwin.h | 95 FindProcesses (const lldb_private::ProcessInstanceInfoMatch &match_info,
|
D | PlatformDarwin.cpp | 574 PlatformDarwin::FindProcesses (const ProcessInstanceInfoMatch &match_info, in FindProcesses() argument 581 match_count = Platform::FindProcesses (match_info, process_infos); in FindProcesses() 587 match_count = m_remote_platform_sp->FindProcesses (match_info, process_infos); in FindProcesses()
|
D | PlatformiOSSimulator.cpp | 397 PlatformiOSSimulator::FindProcesses (const ProcessInstanceInfoMatch &match_info, in FindProcesses() argument
|
D | PlatformRemoteiOS.cpp | 769 PlatformRemoteiOS::FindProcesses (const ProcessInstanceInfoMatch &match_info, in FindProcesses() argument
|
/external/lldb/include/lldb/Host/ |
D | Host.h | 437 FindProcesses (const ProcessInstanceInfoMatch &match_info,
|
/external/lldb/source/Target/ |
D | Platform.cpp | 624 Platform::FindProcesses (const ProcessInstanceInfoMatch &match_info, in FindProcesses() argument 631 match_count = Host::FindProcesses (match_info, process_infos); in FindProcesses()
|
D | Process.cpp | 3096 ProcessInstanceInfoMatch match_info; in Attach() local 3097 match_info.GetProcessInfo() = attach_info; in Attach() 3098 match_info.SetNameMatchType (eNameMatchEquals); in Attach() 3099 platform_sp->FindProcesses (match_info, process_infos); in Attach() 3108 … match_info.GetProcessInfo().GetExecutableFile().GetPath (process_name, sizeof(process_name)); in Attach()
|
/external/lldb/include/lldb/Target/ |
D | Platform.h | 448 FindProcesses (const ProcessInstanceInfoMatch &match_info,
|
/external/lldb/source/Host/macosx/ |
D | Host.mm | 1223 Host::FindProcesses (const ProcessInstanceInfoMatch &match_info, ProcessInstanceInfoList &process_i… 1244 bool all_users = match_info.GetMatchAllUsers(); 1282 if (match_info.Matches (process_info)) 1284 if (GetMacOSXProcessArgs (&match_info, process_info)) 1287 if (match_info.Matches (process_info))
|
/external/lldb/source/Host/common/ |
D | Host.cpp | 1279 Host::FindProcesses (const ProcessInstanceInfoMatch &match_info, ProcessInstanceInfoList &process_i… in FindProcesses() argument
|