reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
 2145     if (!match_info.MatchAllProcesses()) {
 2147       const char *name = match_info.GetProcessInfo().GetName();
 2151         NameMatch name_match_type = match_info.GetNameMatchType();
 2184       if (match_info.GetProcessInfo().ProcessIDIsValid())
 2186                       match_info.GetProcessInfo().GetProcessID());
 2187       if (match_info.GetProcessInfo().ParentProcessIDIsValid())
 2189                       match_info.GetProcessInfo().GetParentProcessID());
 2190       if (match_info.GetProcessInfo().UserIDIsValid())
 2191         packet.Printf("uid:%u;", match_info.GetProcessInfo().GetUserID());
 2192       if (match_info.GetProcessInfo().GroupIDIsValid())
 2193         packet.Printf("gid:%u;", match_info.GetProcessInfo().GetGroupID());
 2194       if (match_info.GetProcessInfo().EffectiveUserIDIsValid())
 2196                       match_info.GetProcessInfo().GetEffectiveUserID());
 2197       if (match_info.GetProcessInfo().EffectiveGroupIDIsValid())
 2199                       match_info.GetProcessInfo().GetEffectiveGroupID());
 2200       packet.Printf("all_users:%u;", match_info.GetMatchAllUsers() ? 1 : 0);
 2201       if (match_info.GetProcessInfo().GetArchitecture().IsValid()) {
 2203             match_info.GetProcessInfo().GetArchitecture();