Home
last modified time | relevance | path

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

123

/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Utility/
H A DUUID.h26 class UUID {
28 UUID() = default;
35 return UUID(); in fromData()
40 static UUID fromData(llvm::ArrayRef<uint8_t> bytes) { return UUID(bytes); } in fromData()
48 return UUID(); in fromOptionalData()
55 return UUID(); in fromOptionalData()
103 friend bool operator==(const UUID &LHS, const UUID &RHS) {
106 friend bool operator!=(const UUID &LHS, const UUID &RHS) {
109 friend bool operator<(const UUID &LHS, const UUID &RHS) {
112 friend bool operator<=(const UUID &LHS, const UUID &RHS) {
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DOptionValueUUID.h22 OptionValueUUID(const UUID &uuid) : OptionValue(), m_uuid(uuid) {} in OptionValueUUID()
54 UUID &GetCurrentValue() { return m_uuid; } in GetCurrentValue()
56 const UUID &GetCurrentValue() const { return m_uuid; } in GetCurrentValue()
58 void SetCurrentValue(const UUID &value) { m_uuid = value; } in SetCurrentValue()
64 UUID m_uuid;
H A DOptionValue.h308 UUID GetUUIDValue() const;
310 bool SetUUIDValue(const UUID &uuid);
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/Breakpad/
H A DObjectFileBreakpad.cpp24 UUID uuid;
106 return UUID(); in parseModuleId()
111 return UUID(); in parseModuleId()
116 return UUID(); in parseModuleId()
120 return UUID(); in parseModuleId()
125 return UUID(); in parseModuleId()
129 return UUID::fromData(&data, os == llvm::Triple::Win32 ? 20 : 16); in parseModuleId()
169 UUID uuid; in parse()
180 UUID uuid = parseModuleId(triple.getOS(), module_id); in parse()
253 UUID uuid) in ObjectFileBreakpad()
[all …]
H A DObjectFileBreakpad.h87 bool GetUUID(UUID *uuid) override;
99 UUID m_uuid;
104 lldb::offset_t length, ArchSpec arch, UUID uuid);
/freebsd-12.1/contrib/llvm/tools/lldb/source/Utility/
H A DUUID.cpp39 std::string UUID::GetAsString(llvm::StringRef separator) const { in GetAsString()
54 void UUID::Dump(Stream *s) const { s->PutCString(GetAsString()); } in Dump()
64 UUID::DecodeUUIDBytesFromString(llvm::StringRef p, in DecodeUUIDBytesFromString()
93 size_t UUID::SetFromStringRef(llvm::StringRef str, uint32_t num_uuid_bytes) { in SetFromStringRef()
101 UUID::DecodeUUIDBytesFromString(p, bytes, num_uuid_bytes); in SetFromStringRef()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/
H A DModuleSpec.h34 ModuleSpec(const FileSpec &file_spec, const UUID &uuid = UUID())
116 UUID *GetUUIDPtr() { return (m_uuid.IsValid() ? &m_uuid : nullptr); } in GetUUIDPtr()
118 const UUID *GetUUIDPtr() const { in GetUUIDPtr()
122 UUID &GetUUID() { return m_uuid; } in GetUUID()
124 const UUID &GetUUID() const { return m_uuid; } in GetUUID()
293 UUID m_uuid;
H A DModule.h753 const lldb_private::UUID &GetUUID();
1074 UUID m_uuid; ///< Each module is assumed to have a unique identifier to help
1163 void SetUUID(const lldb_private::UUID &uuid);
H A DModuleList.h70 class UUID; variable
403 lldb::ModuleSP FindModule(const UUID &uuid) const;
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Host/
H A DSymbols.h21 class UUID; variable
42 const lldb_private::UUID *uuid,
/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/common/
H A DSymbols.cpp50 const lldb_private::UUID *uuid) { in FileAtPathContainsArchAndUUID()
205 const UUID *uuid = module_spec.GetUUIDPtr(); in LocateExecutableSymbolFileDsym()
231 const UUID *uuid = module_spec.GetUUIDPtr(); in LocateExecutableObjectFile()
304 const UUID &module_uuid = module_spec.GetUUID(); in LocateExecutableSymbolFile()
371 const lldb_private::UUID *uuid, in FindSymbolFileInBundle()
/freebsd-12.1/contrib/file/magic/Magdir/
H A Dlinux81 # volume label and UUID Russell Coker
88 >0x40c belong x UUID=%08x
101 >0x40c belong x UUID=%08x
257 # System ID, UUID and volume group name are 128 bytes long
279 # display UUID in LVM format + display all 32 bytes (instead of max string length: 31)
280 >>&0x0 string >\x2f \b, UUID: %.6s
292 >>&0x0 string >\x2f \b, UUID: %.6s
304 >>&0x0 string >\x2f \b, UUID: %.6s
316 >>&0x0 string >\x2f \b, UUID: %.6s
347 >168 string x UUID: %s
[all …]
H A Dluks13 >168 string x UUID: %s
/freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/
H A DOptionValueUUID.cpp74 if (UUID::DecodeUUIDBytesFromString(prefix, uuid_bytes).empty()) { in AutoComplete()
79 const UUID &module_uuid = module_sp->GetUUID(); in AutoComplete()
H A DOptionValue.cpp442 UUID OptionValue::GetUUIDValue() const { in GetUUIDValue()
446 return UUID(); in GetUUIDValue()
449 bool OptionValue::SetUUIDValue(const UUID &uuid) { in SetUUIDValue()
/freebsd-12.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-12.1/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.h126 bool GetUUID(lldb_private::UUID *uuid) override;
197 lldb_private::UUID m_uuid;
262 lldb_private::UUID &uuid,
384 lldb_private::UUID &uuid);
/freebsd-12.1/contrib/llvm/tools/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()
154 ModuleLock::ModuleLock(const FileSpec &root_dir_spec, const UUID &uuid, in ModuleLock()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/
H A DMinidumpParser.cpp65 UUID MinidumpParser::GetModuleUUID(const MinidumpModule *module) { in GetModuleUUID()
73 return UUID(); in GetModuleUUID()
90 return UUID::fromData(pdb70_uuid->Uuid, sizeof(pdb70_uuid->Uuid)); in GetModuleUUID()
92 return UUID::fromData(pdb70_uuid, sizeof(*pdb70_uuid)); in GetModuleUUID()
95 return UUID::fromData(cv_record); in GetModuleUUID()
97 return UUID(); in GetModuleUUID()
H A DMinidumpParser.h57 UUID GetModuleUUID(const MinidumpModule* module);
/freebsd-12.1/contrib/llvm/lib/BinaryFormat/
H A DMagic.cpp43 offsetof(COFF::BigObjHeader, UUID) + sizeof(COFF::BigObjMagic); in identify_magic()
47 const char *Start = Magic.data() + offsetof(COFF::BigObjHeader, UUID); in identify_magic()
/freebsd-12.1/contrib/wpa/hostapd/
H A DREADME-WPS100 # If UUID is not configured, it will be generated based on local MAC address.
134 identifier (Enrollee UUID) is sent. hostapd will need to be configured
149 - Enrollee UUID
162 WPS-PIN-NEEDED [UUID-E|MAC Address|Device Name|Manufacturer|Model Name|Model Number|Serial Number|D…
176 If the UUID-E is not available (e.g., Enrollee waits for the Registrar
177 to be selected before connecting), wildcard UUID may be used to allow
178 the PIN to be used once with any UUID:
278 WPS-REG-SUCCESS <Enrollee MAC address <UUID-E>
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/
H A DModuleCache.h27 class UUID; variable
/freebsd-12.1/contrib/llvm/lib/Bitcode/Reader/
H A DMetadataLoader.cpp184 void addTypeRef(MDString &UUID, DICompositeType &CT);
296 void BitcodeReaderMetadataList::addTypeRef(MDString &UUID, in addTypeRef() argument
298 assert(CT.getRawIdentifier() == &UUID && "Mismatched UUID"); in addTypeRef()
300 OldTypeRefs.FwdDecls.insert(std::make_pair(&UUID, &CT)); in addTypeRef()
302 OldTypeRefs.Final.insert(std::make_pair(&UUID, &CT)); in addTypeRef()
306 auto *UUID = dyn_cast_or_null<MDString>(MaybeUUID); in upgradeTypeRef() local
307 if (LLVM_LIKELY(!UUID)) in upgradeTypeRef()
310 if (auto *CT = OldTypeRefs.Final.lookup(UUID)) in upgradeTypeRef()
313 auto &Ref = OldTypeRefs.Unknown[UUID]; in upgradeTypeRef()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DObjectFile.h415 virtual bool GetUUID(lldb_private::UUID *uuid) = 0;
596 virtual bool GetCorefileMainBinaryInfo (lldb::addr_t &address, UUID &uuid) { in GetCorefileMainBinaryInfo()

123