Home
last modified time | relevance | path

Searched refs:UUID (Results 1 – 25 of 97) sorted by relevance

1234

/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Utility/
H A DUUID.h23 class UUID {
25 UUID() = default;
48 return UUID(); in fromData()
53 static UUID fromData(llvm::ArrayRef<uint8_t> bytes) { return UUID(bytes); } in fromData()
61 return UUID(); in fromOptionalData()
68 return UUID(); in fromOptionalData()
112 friend bool operator==(const UUID &LHS, const UUID &RHS) {
115 friend bool operator!=(const UUID &LHS, const UUID &RHS) {
118 friend bool operator<(const UUID &LHS, const UUID &RHS) {
121 friend bool operator<=(const UUID &LHS, const UUID &RHS) {
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Utility/
H A DUUID.cpp38 UUID UUID::fromCvRecord(UUID::CvRecordPdb70 debug_info) { in fromCvRecord()
44 return UUID::fromOptionalData(&debug_info, sizeof(debug_info)); in fromCvRecord()
45 return UUID::fromOptionalData(&debug_info.Uuid, sizeof(debug_info.Uuid)); in fromCvRecord()
48 std::string UUID::GetAsString(llvm::StringRef separator) const { in GetAsString()
63 void UUID::Dump(Stream *s) const { s->PutCString(GetAsString()); } in Dump()
73 UUID::DecodeUUIDBytesFromString(llvm::StringRef p, in DecodeUUIDBytesFromString()
96 bool UUID::SetFromStringRef(llvm::StringRef str) { in SetFromStringRef()
103 llvm::StringRef rest = UUID::DecodeUUIDBytesFromString(p, bytes); in SetFromStringRef()
114 bool UUID::SetFromOptionalStringRef(llvm::StringRef str) { in SetFromOptionalStringRef()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionValueUUID.h21 OptionValueUUID(const UUID &uuid) : m_uuid(uuid) {} in OptionValueUUID()
43 UUID &GetCurrentValue() { return m_uuid; } in GetCurrentValue()
45 const UUID &GetCurrentValue() const { return m_uuid; } in GetCurrentValue()
47 void SetCurrentValue(const UUID &value) { m_uuid = value; } in SetCurrentValue()
53 UUID m_uuid;
/freebsd-13.1/contrib/llvm-project/llvm/lib/TextAPI/
H A DTextStubCommon.h23 using UUID = std::pair<llvm::MachO::Target, std::string>; variable
27 LLVM_YAML_IS_FLOW_SEQUENCE_VECTOR(UUID) in LLVM_YAML_STRONG_TYPEDEF()
71 template <> struct ScalarTraits<UUID> { in LLVM_YAML_STRONG_TYPEDEF()
72 static void output(const UUID &, void *, raw_ostream &); in LLVM_YAML_STRONG_TYPEDEF()
73 static StringRef input(StringRef, void *, UUID &); in LLVM_YAML_STRONG_TYPEDEF()
H A DTextStubCommon.cpp219 void ScalarTraits<UUID>::output(const UUID &Value, void *, raw_ostream &OS) { in output()
222 StringRef ScalarTraits<UUID>::input(StringRef Scalar, void *, UUID &Value) { in input()
225 auto UUID = Split.second.trim(); in input() local
226 if (UUID.empty()) in input()
228 Value.second = std::string(UUID); in input()
233 QuotingType ScalarTraits<UUID>::mustQuote(StringRef) { in mustQuote()
H A DInterfaceFile.cpp74 void InterfaceFile::addUUID(const Target &Target_, StringRef UUID) { in addUUID() argument
80 Iter->second = std::string(UUID); in addUUID()
84 UUIDs.emplace(Iter, Target_, std::string(UUID)); in addUUID()
87 void InterfaceFile::addUUID(const Target &Target, uint8_t UUID[16]) { in addUUID()
93 << static_cast<int>(UUID[i]); in addUUID()
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DGsymCreator.cpp79 Hdr.UUIDSize = static_cast<uint8_t>(UUID.size()); in encode()
84 memset(Hdr.UUID, 0, sizeof(Hdr.UUID)); in encode()
85 if (UUID.size() > sizeof(Hdr.UUID)) in encode()
87 "invalid UUID size %u", (uint32_t)UUID.size()); in encode()
98 if (UUID.size() > 0) in encode()
99 memcpy(Hdr.UUID, UUID.data(), UUID.size()); in encode()
H A DHeader.cpp35 OS << format_hex_no_prefix(H.UUID[I], 2); in operator <<()
79 Data.getU8(&Offset, H.UUID, GSYM_MAX_UUID_SIZE); in decode()
97 O.writeData(llvm::ArrayRef<uint8_t>(UUID)); in encode()
108 memcmp(LHS.UUID, RHS.UUID, LHS.UUIDSize) == 0; in operator ==()
H A DObjectFileTransformer.cpp27 std::vector<uint8_t> UUID; in getUUID() local
31 UUID.assign(MachUUID.data(), MachUUID.data() + MachUUID.size()); in getUUID()
62 UUID.assign(Ptr, Ptr + UUIDBytes.size()); in getUUID()
67 return UUID; in getUUID()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Core/
H A DModuleSpec.h35 ModuleSpec(const FileSpec &file_spec, const UUID &uuid = UUID(),
98 UUID *GetUUIDPtr() { return (m_uuid.IsValid() ? &m_uuid : nullptr); } in GetUUIDPtr()
100 const UUID *GetUUIDPtr() const { in GetUUIDPtr()
104 UUID &GetUUID() { return m_uuid; } in GetUUID()
106 const UUID &GetUUID() const { return m_uuid; } in GetUUID()
271 UUID m_uuid;
/freebsd-13.1/contrib/file/tests/
H A Dbcachefs.result1 bcachefs, UUID=46bd306f-80ad-4cd0-af4f-147e7d85f393, label "Label", version 13, min version 13, dev…
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/
H A DObjectFileBreakpad.h86 UUID GetUUID() override { return m_uuid; } in GetUUID()
96 UUID m_uuid;
101 lldb::offset_t length, ArchSpec arch, UUID uuid);
H A DBreakpadRecords.h51 ModuleRecord(llvm::Triple::OSType OS, llvm::Triple::ArchType Arch, UUID ID) in ModuleRecord()
56 UUID ID;
67 InfoRecord(UUID ID) : Record(Info), ID(std::move(ID)) {} in InfoRecord()
69 UUID ID;
H A DObjectFileBreakpad.cpp24 UUID uuid;
43 UUID uuid = Info && Info->ID ? Info->ID : Module->ID; in parse()
115 UUID uuid) in ObjectFileBreakpad()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DLocateSymbolFile.h21 class UUID; variable
40 const lldb_private::UUID *uuid,
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ObjectFile/PDB/
H A DObjectFilePDB.cpp30 static UUID GetPDBUUID(InfoStream &IS) { in LLDB_PLUGIN_DEFINE()
31 UUID::CvRecordPdb70 debug_info; in LLDB_PLUGIN_DEFINE()
34 return UUID::fromCvRecord(debug_info); in LLDB_PLUGIN_DEFINE()
133 lldb_private::UUID &uuid = module_spec.GetUUID(); in GetModuleSpecifications()
H A DObjectFilePDB.h84 UUID GetUUID() override { return m_uuid; } in GetUUID()
99 UUID m_uuid;
/freebsd-13.1/contrib/llvm-project/lldb/source/Symbol/
H A DLocateSymbolFile.cpp51 const lldb_private::UUID *uuid) { in FileAtPathContainsArchAndUUID()
210 const UUID *uuid = module_spec.GetUUIDPtr(); in LocateExecutableSymbolFileDsym()
235 const UUID *uuid = module_spec.GetUUIDPtr(); in LocateExecutableObjectFile()
308 const UUID &module_uuid = module_spec.GetUUID(); in LocateExecutableSymbolFile()
380 const lldb_private::UUID *uuid, in FindSymbolFileInBundle()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
H A DMinidumpParser.cpp51 UUID MinidumpParser::GetModuleUUID(const minidump::Module *module) { in GetModuleUUID()
59 return UUID(); in GetModuleUUID()
65 const UUID::CvRecordPdb70 *pdb70_uuid = nullptr; in GetModuleUUID()
68 return UUID(); in GetModuleUUID()
71 return UUID::fromOptionalData(pdb70_uuid, sizeof(*pdb70_uuid)); in GetModuleUUID()
72 return UUID::fromOptionalData(&pdb70_uuid->Uuid, in GetModuleUUID()
75 return UUID::fromCvRecord(*pdb70_uuid); in GetModuleUUID()
77 return UUID::fromOptionalData(cv_record); in GetModuleUUID()
79 return UUID(); in GetModuleUUID()
/freebsd-13.1/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueUUID.cpp69 if (!UUID::DecodeUUIDBytesFromString(prefix, uuid_bytes).empty()) in AutoComplete()
76 const UUID &module_uuid = module_sp->GetUUID(); in AutoComplete()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/
H A DGsymCreator.h141 std::vector<uint8_t> UUID; variable
214 UUID.assign(UUIDBytes.begin(), UUIDBytes.end()); in setUUID()
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DModuleCache.cpp56 ModuleLock(const FileSpec &root_dir_spec, const UUID &uuid, Status &error);
72 FileSpec GetModuleDirectory(const FileSpec &root_dir_spec, const UUID &uuid) { in GetModuleDirectory()
84 UUID module_uuid; in DeleteExistingModule()
152 ModuleLock::ModuleLock(const FileSpec &root_dir_spec, const UUID &uuid, in ModuleLock()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.h123 lldb_private::UUID GetUUID() override;
196 lldb_private::UUID m_uuid;
265 lldb_private::UUID &uuid,
384 lldb_private::UUID &uuid);
/freebsd-13.1/contrib/wpa/wpa_supplicant/
H A DREADME-WPS74 WPS needs the Universally Unique IDentifier (UUID; see RFC 4122) for
76 wpa_supplicant (if not set, UUID will be generated based on local MAC
79 # example UUID for WPS
261 wps_er_learn <UUID|BSSID> <AP PIN>
264 wps_er_set_config <UUID|BSSID> <network id>
270 wps_er_config <UUID|BSSID> <AP PIN> <new SSID> <auth> <encr> <new key>
279 wps_er_pbc <Enrollee UUID|MAC address>
284 - if Enrollee UUID is not known, "any" can be used to add a wildcard PIN
374 "nfc_get_handover_sel <NDEF> <WPS> [UUID|BSSID]" command can be used to
380 UUID|BSSID argument is included, this is a request to build the handover
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ObjectFile/wasm/
H A DObjectFileWasm.h92 UUID GetUUID() override { return m_uuid; } in GetUUID()
146 UUID m_uuid;

1234