Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp435 if (m_bytes[0] != '$' && m_bytes[0] != '%') in DecompressPacket()
437 if (m_bytes[1] != 'C' && m_bytes[1] != 'N') in DecompressPacket()
471 if (m_bytes[1] == 'C') { in DecompressPacket()
516 if (m_bytes[1] == 'N') { in DecompressPacket()
519 m_bytes.erase(1, 1); in DecompressPacket()
529 if (m_bytes[i] == '}') { in DecompressPacket()
671 if (!m_bytes.empty()) { in CheckForPacket()
688 switch (m_bytes[0]) { in CheckForPacket()
731 switch (m_bytes[idx]) { in CheckForPacket()
807 m_bytes[total_length - 2], m_bytes[total_length - 1]); in CheckForPacket()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/source/Utility/
H A DEvent.cpp108 EventDataBytes::EventDataBytes() : m_bytes() {} in EventDataBytes()
110 EventDataBytes::EventDataBytes(const char *cstr) : m_bytes() { in EventDataBytes()
135 std::count_if(m_bytes.begin(), m_bytes.end(), isprint); in Dump()
136 if (num_printable_chars == m_bytes.size()) in Dump()
137 s->Format("\"{0}\"", m_bytes); in Dump()
146 return (m_bytes.empty() ? nullptr : m_bytes.data()); in GetBytes()
153 m_bytes.assign((const char *)src, src_len); in SetBytes()
155 m_bytes.clear(); in SetBytes()
160 m_bytes.assign(cstr); in SetBytesFromCString()
162 m_bytes.clear(); in SetBytesFromCString()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Utility/
H A DUUID.h59 void Clear() { m_bytes.clear(); } in Clear()
63 llvm::ArrayRef<uint8_t> GetBytes() const { return m_bytes; } in GetBytes()
66 bool IsValid() const { return !m_bytes.empty(); } in IsValid()
97 UUID(llvm::ArrayRef<uint8_t> bytes) : m_bytes(bytes.begin(), bytes.end()) {} in UUID()
101 llvm::SmallVector<uint8_t, 20> m_bytes; variable
104 return LHS.m_bytes == RHS.m_bytes;
110 return LHS.m_bytes < RHS.m_bytes;
H A DEvent.h106 std::string m_bytes;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DCommunication.cpp45 m_read_thread_enabled(false), m_read_thread_did_exit(false), m_bytes(), in Communication()
242 if (!m_bytes.empty()) { in GetCachedBytes()
246 return m_bytes.size(); in GetCachedBytes()
248 const size_t len = std::min<size_t>(dst_len, m_bytes.size()); in GetCachedBytes()
250 ::memcpy(dst, m_bytes.c_str(), len); in GetCachedBytes()
251 m_bytes.erase(m_bytes.begin(), m_bytes.begin() + len); in GetCachedBytes()
274 m_bytes.append((const char *)bytes, len); in AppendBytesToCache()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/
H A DCommunication.h344 m_bytes; ///< A buffer to cache bytes read in the ReadThread function. variable