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

References

tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp
 2626   packet.SetFilePos(strlen("z"));
 2627   if (packet.GetBytesLeft() < 1)
 2629         packet, "Too short z packet, missing software/hardware specifier");
 2635       GDBStoppointType(packet.GetS32(eStoppointInvalid));
 2655         packet, "z packet had invalid software/hardware specifier");
 2658   if ((packet.GetBytesLeft() < 1) || packet.GetChar() != ',')
 2658   if ((packet.GetBytesLeft() < 1) || packet.GetChar() != ',')
 2660         packet, "Malformed z packet, expecting comma after stoppoint type");
 2663   if (packet.GetBytesLeft() < 1)
 2664     return SendIllFormedResponse(packet, "Too short z packet, missing address");
 2665   const lldb::addr_t addr = packet.GetHexMaxU64(false, 0);
 2667   if ((packet.GetBytesLeft() < 1) || packet.GetChar() != ',')
 2667   if ((packet.GetBytesLeft() < 1) || packet.GetChar() != ',')
 2669         packet, "Malformed z packet, expecting comma after address");