Home
last modified time | relevance | path

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

12345

/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DUUID.h23 class UUID {
28 UUID() = default;
31 UUID(llvm::ArrayRef<uint8_t> bytes) : m_bytes(bytes.begin(), bytes.end()) { in UUID() function
51 UUID(CvRecordPdb70 debug_info);
54 UUID(const void *bytes, uint32_t num_bytes) { in UUID() function
58 = UUID(llvm::ArrayRef<uint8_t>(reinterpret_cast<const uint8_t *>(bytes), in UUID()
96 friend bool operator==(const UUID &LHS, const UUID &RHS) {
99 friend bool operator!=(const UUID &LHS, const UUID &RHS) {
102 friend bool operator<(const UUID &LHS, const UUID &RHS) {
105 friend bool operator<=(const UUID &LHS, const UUID &RHS) {
[all …]
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DUUID.cpp38 UUID::UUID(UUID::CvRecordPdb70 debug_info) { in UUID() function in UUID
44 *this = UUID(&debug_info, sizeof(debug_info)); in UUID()
46 *this = UUID(&debug_info.Uuid, sizeof(debug_info.Uuid)); in UUID()
49 std::string UUID::GetAsString(llvm::StringRef separator) const { in GetAsString()
64 void UUID::Dump(Stream &s) const { s.PutCString(GetAsString()); } in Dump()
74 UUID::DecodeUUIDBytesFromString(llvm::StringRef p, in DecodeUUIDBytesFromString()
97 bool UUID::SetFromStringRef(llvm::StringRef str) { in SetFromStringRef()
104 llvm::StringRef rest = UUID::DecodeUUIDBytesFromString(p, bytes); in SetFromStringRef()
111 *this = UUID(bytes); in SetFromStringRef()
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionValueUUID.h21 OptionValueUUID(const UUID &uuid) : m_uuid(uuid) {} in OptionValueUUID()
47 UUID &GetCurrentValue() { return m_uuid; } in GetCurrentValue()
49 const UUID &GetCurrentValue() const { return m_uuid; } in GetCurrentValue()
51 void SetCurrentValue(const UUID &value) { m_uuid = value; } in SetCurrentValue()
57 UUID m_uuid;
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/
H A DTextStubCommon.h24 using UUID = std::pair<llvm::MachO::Target, std::string>; variable
40 LLVM_YAML_IS_FLOW_SEQUENCE_VECTOR(UUID) in LLVM_YAML_STRONG_TYPEDEF()
98 template <> struct ScalarTraits<UUID> { in LLVM_YAML_STRONG_TYPEDEF()
99 static void output(const UUID &, void *, raw_ostream &); in LLVM_YAML_STRONG_TYPEDEF()
100 static StringRef input(StringRef, void *, UUID &); in LLVM_YAML_STRONG_TYPEDEF()
H A DTextStubCommon.cpp220 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()
227 QuotingType ScalarTraits<UUID>::mustQuote(StringRef) { in mustQuote()
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DLocateSymbolFile.h23 class UUID; variable
27 /// Locate the symbol file for the given UUID on a background thread. This
31 /// given UUID.
32 static void DownloadSymbolFileAsync(const UUID &uuid);
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
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 DGsymCreator.cpp102 Hdr.UUIDSize = static_cast<uint8_t>(UUID.size()); in encode()
107 memset(Hdr.UUID, 0, sizeof(Hdr.UUID)); in encode()
108 if (UUID.size() > sizeof(Hdr.UUID)) in encode()
110 "invalid UUID size %u", (uint32_t)UUID.size()); in encode()
112 if (UUID.size() > 0) in encode()
113 memcpy(Hdr.UUID, UUID.data(), UUID.size()); in encode()
538 GC->setUUID(UUID); in createSegment()
H A DObjectFileTransformer.cpp28 std::vector<uint8_t> UUID; in getUUID() local
32 UUID.assign(MachUUID.data(), MachUUID.data() + MachUUID.size()); in getUUID()
63 UUID.assign(Ptr, Ptr + UUIDBytes.size()); in getUUID()
68 return UUID; in getUUID()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DModuleSpec.h34 ModuleSpec(const FileSpec &file_spec, const UUID &uuid = UUID(),
93 UUID *GetUUIDPtr() { return (m_uuid.IsValid() ? &m_uuid : nullptr); } in GetUUIDPtr()
95 const UUID *GetUUIDPtr() const { in GetUUIDPtr()
99 UUID &GetUUID() { return m_uuid; } in GetUUID()
101 const UUID &GetUUID() const { return m_uuid; } in GetUUID()
266 UUID m_uuid;
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DLocateSymbolFile.cpp
H A DSymbolLocator.cpp21 void SymbolLocator::DownloadSymbolFileAsync(const UUID &uuid) { in DownloadSymbolFileAsync()
22 static llvm::SmallSet<UUID, 8> g_seen_uuids; in DownloadSymbolFileAsync()
/freebsd/contrib/file/tests/
H A Dbcachefs2.result1 bcachefs, UUID=4fa11b1e-75e6-4210-9167-34e1769c0fe1, label "Label", version 26, min version 26, dev…
H A Dbcachefs.result1 bcachefs, UUID=46bd306f-80ad-4cd0-af4f-147e7d85f393, label "Label", version 13, min version 13, dev…
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/
H A DObjectFileBreakpad.h84 UUID GetUUID() override { return m_uuid; } in GetUUID()
94 UUID m_uuid;
99 lldb::offset_t length, ArchSpec arch, UUID uuid);
H A DObjectFileBreakpad.cpp25 UUID uuid;
44 UUID uuid = Info && Info->ID ? Info->ID : Module->ID; in parse()
111 UUID uuid) in ObjectFileBreakpad()
H A DBreakpadRecords.h63 ModuleRecord(llvm::Triple::OSType OS, llvm::Triple::ArchType Arch, UUID ID) in ModuleRecord()
68 UUID ID;
79 InfoRecord(UUID ID) : Record(Info), ID(std::move(ID)) {} in InfoRecord()
81 UUID ID;
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/PDB/
H A DObjectFilePDB.cpp30 static UUID GetPDBUUID(InfoStream &IS, DbiStream &DS) { in LLDB_PLUGIN_DEFINE()
31 UUID::CvRecordPdb70 debug_info; in LLDB_PLUGIN_DEFINE()
34 return UUID(debug_info); in LLDB_PLUGIN_DEFINE()
133 lldb_private::UUID &uuid = module_spec.GetUUID(); in GetModuleSpecifications()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
H A DMinidumpParser.cpp52 UUID MinidumpParser::GetModuleUUID(const minidump::Module *module) { in GetModuleUUID()
60 return UUID(); in GetModuleUUID()
66 const UUID::CvRecordPdb70 *pdb70_uuid = nullptr; in GetModuleUUID()
69 return UUID(); in GetModuleUUID()
72 return UUID(pdb70_uuid, sizeof(*pdb70_uuid)); in GetModuleUUID()
73 return UUID(&pdb70_uuid->Uuid, in GetModuleUUID()
76 return UUID(*pdb70_uuid); in GetModuleUUID()
78 return UUID(cv_record); in GetModuleUUID()
80 return UUID(); in GetModuleUUID()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/JSON/
H A DObjectFileJSON.h81 UUID GetUUID() override { return m_uuid; } in GetUUID()
105 UUID m_uuid;
114 UUID uuid, Type type, std::vector<JSONSymbol> symbols,
/freebsd/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/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Placeholder/
H A DObjectFilePlaceholder.h45 lldb_private::UUID GetUUID() override { return m_uuid; } in GetUUID()
69 lldb_private::UUID m_uuid;
/freebsd/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
257 wps_er_learn <UUID|BSSID> <AP PIN>
260 wps_er_set_config <UUID|BSSID> <network id>
266 wps_er_config <UUID|BSSID> <AP PIN> <new SSID> <auth> <encr> <new key>
274 wps_er_pbc <Enrollee UUID|MAC address>
277 wps_er_pin <Enrollee UUID|"any"|MAC address> <PIN> [Enrollee MAC address]
279 - if Enrollee UUID is not known, "any" can be used to add a wildcard PIN
368 "nfc_get_handover_sel <NDEF> <WPS> [UUID|BSSID]" command can be used to
[all …]
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DModuleCache.cpp57 ModuleLock(const FileSpec &root_dir_spec, const UUID &uuid, Status &error);
73 FileSpec GetModuleDirectory(const FileSpec &root_dir_spec, const UUID &uuid) { in GetModuleDirectory()
85 UUID module_uuid; in DeleteExistingModule()
153 ModuleLock::ModuleLock(const FileSpec &root_dir_spec, const UUID &uuid, in ModuleLock()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.h124 lldb_private::UUID GetUUID() override;
204 lldb_private::UUID m_uuid;
273 lldb_private::UUID &uuid,
394 lldb_private::UUID &uuid);

12345