Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DUUID.cpp79 llvm::SmallVectorImpl<uint8_t> &uuid_bytes) { in DecodeUUIDBytesFromString() argument
80 uuid_bytes.clear(); in DecodeUUIDBytesFromString()
86 uuid_bytes.push_back((hi_nibble << 4) + lo_nibble); in DecodeUUIDBytesFromString()
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueUUID.cpp68 llvm::SmallVector<uint8_t, 20> uuid_bytes; in AutoComplete() local
69 if (!UUID::DecodeUUIDBytesFromString(prefix, uuid_bytes).empty()) in AutoComplete()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DDataFileCache.cpp220 llvm::ArrayRef<uint8_t> uuid_bytes = m_uuid->GetBytes(); in Encode() local
222 encoder.AppendU8(uuid_bytes.size()); in Encode()
223 encoder.AppendData(uuid_bytes); in Encode()
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DUUID.h89 llvm::SmallVectorImpl<uint8_t> &uuid_bytes);
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBModule.cpp165 const uint8_t *uuid_bytes = nullptr; in GetUUIDBytes() local
168 uuid_bytes = module_sp->GetUUID().GetBytes().data(); in GetUUIDBytes()
170 return uuid_bytes; in GetUUIDBytes()