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

References

tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
  681       content_length = total_length = 1; // The command is one byte long...
  701             total_length =
  742     } else if (total_length > 0) {
  746       assert(total_length <= m_bytes.size());
  747       assert(content_length <= total_length);
  762         if (m_bytes[0] == '$' && total_length > 4) {
  763           for (size_t i = 0; !binary && i < total_length; ++i) {
  775                         (uint64_t)original_packet_size, (uint64_t)total_length,
  779                         (uint64_t)total_length, m_bytes[0]);
  793           strm.Printf("%c%c%c", m_bytes[total_length - 3],
  794                       m_bytes[total_length - 2], m_bytes[total_length - 1]);
  794                       m_bytes[total_length - 2], m_bytes[total_length - 1]);
  799                       (uint64_t)original_packet_size, (uint64_t)total_length,
  800                       (int)(total_length), m_bytes.c_str());
  803                       (uint64_t)total_length, (int)(total_length),
  803                       (uint64_t)total_length, (int)(total_length),
  808       m_history.AddPacket(m_bytes, total_length,
  809                           GDBRemotePacket::ePacketTypeRecv, total_length);
  853                         (int)(total_length), m_bytes.c_str(),
  869       m_bytes.erase(0, total_length);