Searched refs:m_bytes (Results 1 – 8 of 8) sorted by relevance
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
H A D | GDBRemoteCommunication.cpp | 393 size_t pkt_size = m_bytes.size(); in DecompressPacket() 401 if (m_bytes[0] != '$' && m_bytes[0] != '%') in DecompressPacket() 403 if (m_bytes[1] != 'C' && m_bytes[1] != 'N') in DecompressPacket() 406 size_t hash_mark_idx = m_bytes.find('#'); in DecompressPacket() 409 if (hash_mark_idx + 2 >= m_bytes.size()) in DecompressPacket() 412 if (!::isxdigit(m_bytes[hash_mark_idx + 1]) || in DecompressPacket() 413 !::isxdigit(m_bytes[hash_mark_idx + 2])) in DecompressPacket() 437 if (m_bytes[1] == 'C') { in DecompressPacket() 439 while (i < hash_mark_idx && isdigit(m_bytes[i])) in DecompressPacket() 441 if (i < hash_mark_idx && m_bytes[i] == ':') { in DecompressPacket() [all …]
|
H A D | GDBRemoteCommunication.h | 179 std::string m_bytes; variable
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/ |
H A D | UUID.h | 31 UUID(llvm::ArrayRef<uint8_t> bytes) : m_bytes(bytes.begin(), bytes.end()) { in UUID() 32 if (llvm::all_of(m_bytes, [](uint8_t b) { return b == 0; })) { in UUID() 62 void Clear() { m_bytes.clear(); } in Clear() 66 llvm::ArrayRef<uint8_t> GetBytes() const { return m_bytes; } in GetBytes() 69 bool IsValid() const { return !m_bytes.empty(); } in IsValid() 94 llvm::SmallVector<uint8_t, 20> m_bytes; 97 return LHS.m_bytes == RHS.m_bytes; 103 return LHS.m_bytes < RHS.m_bytes;
|
H A D | DataBuffer.h | 129 : m_bytes(bytes), m_size(size) {} in DataBufferUnowned() 131 const uint8_t *GetBytesImpl() const override { return m_bytes; } 145 uint8_t *m_bytes;
|
H A D | Event.h | 97 std::string m_bytes;
|
/freebsd/contrib/llvm-project/lldb/source/Utility/ |
H A D | Event.cpp | 118 EventDataBytes::EventDataBytes() : m_bytes() {} in EventDataBytes() 120 EventDataBytes::EventDataBytes(llvm::StringRef str) : m_bytes(str.str()) {} in EventDataBytes() 131 if (llvm::all_of(m_bytes, llvm::isPrint)) in Dump() 132 s->Format("\"{0}\"", m_bytes); in Dump() 135 reinterpret_cast<const uint8_t *>(m_bytes.data()), in Dump() 136 reinterpret_cast<const uint8_t *>(m_bytes.data() + in Dump() 137 m_bytes.size()))); in Dump() 141 return (m_bytes.empty() ? nullptr : m_bytes.data()); in GetBytes() 144 size_t EventDataBytes::GetByteSize() const { return m_bytes.size(); } in GetByteSize()
|
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | ThreadedCommunication.cpp | 42 m_read_thread_did_exit(false), m_bytes(), m_bytes_mutex(), in ThreadedCommunication() 223 if (!m_bytes.empty()) { in GetCachedBytes() 227 return m_bytes.size(); in GetCachedBytes() 229 const size_t len = std::min<size_t>(dst_len, m_bytes.size()); in GetCachedBytes() 231 ::memcpy(dst, m_bytes.c_str(), len); in GetCachedBytes() 232 m_bytes.erase(m_bytes.begin(), m_bytes.begin() + len); in GetCachedBytes() 255 m_bytes.append((const char *)bytes, len); in AppendBytesToCache()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/ |
H A D | ThreadedCommunication.h | 243 m_bytes; ///< A buffer to cache bytes read in the ReadThread function. variable
|