Searched refs:packet_str (Results 1 - 1 of 1) sorted by relevance

/freebsd-10.3-release/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp462 std::string &packet_str = packet.GetStringRef(); local
479 // Clear packet_str in case there is some existing data in it.
480 packet_str.clear();
481 // Copy the packet from m_bytes to packet_str expanding the
484 packet_str.reserve(m_bytes.length());
492 char char_to_repeat = packet_str.back();
498 packet_str.push_back(char_to_repeat);
505 packet_str.push_back(escapee);
509 packet_str.push_back(*c);
523 char actual_checksum = CalculcateChecksum (packet_str
[all...]

Completed in 77 milliseconds