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
  431   if (hash_mark_idx == std::string::npos)
  433   if (hash_mark_idx + 2 >= m_bytes.size())
  436   if (!::isxdigit(m_bytes[hash_mark_idx + 1]) ||
  437       !::isxdigit(m_bytes[hash_mark_idx + 2]))
  446       hash_mark_idx +
  453   size_t size_of_first_packet = hash_mark_idx + 3;
  463     while (i < hash_mark_idx && isdigit(m_bytes[i]))
  465     if (i < hash_mark_idx && m_bytes[i] == ':') {
  468       content_length = hash_mark_idx - content_start;
  487         llvm::StringRef(m_bytes).substr(1, hash_mark_idx - 1));
  517   while (i < hash_mark_idx) {