Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/
H A DOptionValueUUID.cpp73 llvm::SmallVector<uint8_t, 20> uuid_bytes; in AutoComplete() local
74 if (UUID::DecodeUUIDBytesFromString(prefix, uuid_bytes).empty()) { in AutoComplete()
82 if (module_bytes.size() >= uuid_bytes.size() && in AutoComplete()
83 module_bytes.take_front(uuid_bytes.size()).equals(uuid_bytes)) { in AutoComplete()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Utility/
H A DUUID.cpp65 llvm::SmallVectorImpl<uint8_t> &uuid_bytes, in DecodeUUIDBytesFromString() argument
67 uuid_bytes.clear(); in DecodeUUIDBytesFromString()
73 uuid_bytes.push_back((hi_nibble << 4) + lo_nibble); in DecodeUUIDBytesFromString()
80 if (uuid_bytes.size() == num_uuid_bytes) in DecodeUUIDBytesFromString()
/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBModule.cpp144 const uint8_t *uuid_bytes = NULL; in GetUUIDBytes() local
147 uuid_bytes = module_sp->GetUUID().GetBytes().data(); in GetUUIDBytes()
150 if (uuid_bytes) { in GetUUIDBytes()
159 return uuid_bytes; in GetUUIDBytes()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Utility/
H A DUUID.h93 llvm::SmallVectorImpl<uint8_t> &uuid_bytes,