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

/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DUUID.h55 void Clear() { m_bytes.clear(); }
59 llvm::ArrayRef<uint8_t> GetBytes() const { return m_bytes; }
62 bool IsValid() const { return !m_bytes.empty(); }
95 UUID(llvm::ArrayRef<uint8_t> bytes) : m_bytes(bytes.begin(), bytes.end()) {}
99 llvm::SmallVector<uint8_t, 20> m_bytes; member in class:lldb_private::UUID
102 return LHS.m_bytes == RHS.m_bytes;
108 return LHS.m_bytes < RHS.m_bytes;
H A DEvent.h93 std::string m_bytes; member in class:lldb_private::EventDataBytes
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
H A DEvent.cpp101 EventDataBytes::EventDataBytes() : m_bytes() {}
103 EventDataBytes::EventDataBytes(const char *cstr) : m_bytes() {
107 EventDataBytes::EventDataBytes(llvm::StringRef str) : m_bytes() {
111 EventDataBytes::EventDataBytes(const void *src, size_t src_len) : m_bytes() {
128 std::count_if(m_bytes.begin(), m_bytes.end(), isprint);
129 if (num_printable_chars == m_bytes.size())
130 s->Format("\"{0}\"", m_bytes);
133 reinterpret_cast<const uint8_t *>(m_bytes.data()),
134 reinterpret_cast<const uint8_t *>(m_bytes
[all...]
H A DUUID.cpp117 if (llvm::all_of(m_bytes, [](uint8_t b) { return b == 0; }))
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp418 size_t pkt_size = m_bytes.size();
426 if (m_bytes[0] != '$' && m_bytes[0] != '%')
428 if (m_bytes[1] != 'C' && m_bytes[1] != 'N')
431 size_t hash_mark_idx = m_bytes.find('#');
434 if (hash_mark_idx + 2 >= m_bytes.size())
437 if (!::isxdigit(m_bytes[hash_mark_idx + 1]) ||
438 !::isxdigit(m_bytes[hash_mark_idx + 2]))
450 // Normally size_of_first_packet == m_bytes
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DCommunication.cpp44 m_read_thread_enabled(false), m_read_thread_did_exit(false), m_bytes(),
253 if (!m_bytes.empty()) {
257 return m_bytes.size();
259 const size_t len = std::min<size_t>(dst_len, m_bytes.size());
261 ::memcpy(dst, m_bytes.c_str(), len);
262 m_bytes.erase(m_bytes.begin(), m_bytes.begin() + len);
284 m_bytes.append((const char *)bytes, len);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DCommunication.h70 /// When bytes are received the data gets cached in \a m_bytes and this class
308 m_bytes; ///< A buffer to cache bytes read in the ReadThread function. local

Completed in 120 milliseconds