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
 2144     packet.PutCString("qfProcessInfo");
 2146       packet.PutChar(':');
 2158           packet.PutCString("name_match:equals;");
 2162           packet.PutCString("name_match:contains;");
 2166           packet.PutCString("name_match:starts_with;");
 2170           packet.PutCString("name_match:ends_with;");
 2174           packet.PutCString("name_match:regex;");
 2178           packet.PutCString("name:");
 2179           packet.PutBytesAsRawHex8(name, ::strlen(name));
 2180           packet.PutChar(';');
 2185         packet.Printf("pid:%" PRIu64 ";",
 2188         packet.Printf("parent_pid:%" PRIu64 ";",
 2191         packet.Printf("uid:%u;", match_info.GetProcessInfo().GetUserID());
 2193         packet.Printf("gid:%u;", match_info.GetProcessInfo().GetGroupID());
 2195         packet.Printf("euid:%u;",
 2198         packet.Printf("egid:%u;",
 2200       packet.Printf("all_users:%u;", match_info.GetMatchAllUsers() ? 1 : 0);
 2205         packet.PutCString("triple:");
 2206         packet.PutCString(triple.getTriple());
 2207         packet.PutChar(';');
 2214     if (SendPacketAndWaitForResponse(packet.GetString(), response, false) ==