Home
last modified time | relevance | path

Searched refs:hash_pos (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp666 size_t hash_pos = m_bytes.find('#'); in CheckForPacket() local
667 if (hash_pos != std::string::npos) { in CheckForPacket()
668 if (hash_pos + 2 < m_bytes.size()) { in CheckForPacket()
669 checksum_idx = hash_pos + 1; in CheckForPacket()
674 content_length = hash_pos - 1; in CheckForPacket()
677 hash_pos + 3; // Skip the # and the two hex checksum bytes in CheckForPacket()