Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp456 char packet_checksum_cstr[3]; in DecompressPacket() local
457 packet_checksum_cstr[0] = m_bytes[checksum_idx]; in DecompressPacket()
458 packet_checksum_cstr[1] = m_bytes[checksum_idx + 1]; in DecompressPacket()
459 packet_checksum_cstr[2] = '\0'; in DecompressPacket()
460 long packet_checksum = strtol(packet_checksum_cstr, nullptr, 16); in DecompressPacket()
797 const char *packet_checksum_cstr = &m_bytes[checksum_idx]; in CheckForPacket() local
798 char packet_checksum = strtol(packet_checksum_cstr, nullptr, 16); in CheckForPacket()