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
 2352   packet.SetFilePos(strlen("M"));
 2353   if (packet.GetBytesLeft() < 1)
 2354     return SendIllFormedResponse(packet, "Too short M packet");
 2359   const lldb::addr_t write_addr = packet.GetHexMaxU64(false, 0);
 2362   if ((packet.GetBytesLeft() < 1) || (packet.GetChar() != ','))
 2362   if ((packet.GetBytesLeft() < 1) || (packet.GetChar() != ','))
 2363     return SendIllFormedResponse(packet, "Comma sep missing in M packet");
 2366   if (packet.GetBytesLeft() < 1)
 2367     return SendIllFormedResponse(packet, "Length missing in M packet");
 2369   const uint64_t byte_count = packet.GetHexMaxU64(false, 0);
 2376   if ((packet.GetBytesLeft() < 1) || (packet.GetChar() != ':'))
 2376   if ((packet.GetBytesLeft() < 1) || (packet.GetChar() != ':'))
 2378         packet, "Comma sep missing in M packet after byte length");
 2387   const uint64_t convert_count = packet.GetHexBytes(buf, 0);
 2394     return SendIllFormedResponse(packet, "M content byte length specified did "