/llvm-project/lldb/include/lldb/Interpreter/ |
H A D | OptionValueUUID.h | 21 OptionValueUUID(const UUID &uuid) : m_uuid(uuid) {} in OptionValueUUID() 33 return m_uuid.GetAsString(); in ToJSON() 41 m_uuid.Clear(); in Clear() 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;
|
H A D | OptionGroupUUID.h | 32 const OptionValueUUID &GetOptionValue() const { return m_uuid; } in GetOptionValue() 35 OptionValueUUID m_uuid;
|
/llvm-project/lldb/include/lldb/Core/ |
H A D | ModuleSpec.h | 36 : m_file(file_spec), m_uuid(uuid), m_object_offset(0), m_data(data) { in m_file() 93 UUID *GetUUIDPtr() { return (m_uuid.IsValid() ? &m_uuid : nullptr); } in GetUUIDPtr() 96 return (m_uuid.IsValid() ? &m_uuid : nullptr); in GetUUIDPtr() 99 UUID &GetUUID() { return m_uuid; } in GetUUID() 101 const UUID &GetUUID() const { return m_uuid; } in GetUUID() 134 m_uuid.Clear(); in Clear() 151 if (m_uuid.IsValid()) 193 if (m_uuid.IsValid()) { in Dump() 197 m_uuid.Dump(strm); in Dump() 266 UUID m_uuid; variable
|
H A D | DataFileCache.h | 111 std::optional<UUID> m_uuid; member 128 m_uuid = std::nullopt; in Clear() 139 bool IsValid() const { return m_uuid.has_value(); } in IsValid() 143 return m_uuid == rhs.m_uuid && m_mod_time == rhs.m_mod_time &&
|
/llvm-project/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/ |
H A D | DynamicLoaderDarwinKernel.cpp | 613 if (m_uuid.IsValid() || rhs.GetUUID().IsValid()) { in operator ==() 614 return m_uuid == rhs.GetUUID(); in operator ==() 629 m_uuid = uuid; in SetUUID() 633 return m_uuid; in GetUUID() 673 if (m_uuid.IsValid()) { in ReadMemoryModule() 674 if (m_uuid != memory_module_sp->GetUUID()) { in ReadMemoryModule() 680 m_uuid.GetAsString().c_str(), m_load_address, in ReadMemoryModule() 688 if (!m_uuid.IsValid() && memory_module_sp->GetUUID().IsValid()) { in ReadMemoryModule() 689 m_uuid = memory_module_sp->GetUUID(); in ReadMemoryModule() 727 if (m_uuid in LoadImageUsingMemoryModule() [all...] |
H A D | DynamicLoaderDarwinKernel.h | 127 KextImageInfo() : m_name(), m_module_sp(), m_memory_module_sp(), m_uuid() {} 133 m_uuid.Clear(); in Clear() 204 m_uuid; // UUID for this dylib if it has one, else all zeros 202 m_uuid; // UUID for this dylib if it has one, else all zeros global() variable
|
/llvm-project/lldb/source/Plugins/DynamicLoader/FreeBSD-Kernel/ |
H A D | DynamicLoaderFreeBSDKernel.h | 62 : m_module_sp(), m_memory_module_sp(), m_uuid(), m_name(), m_path() {} in KModImageInfo() 67 m_uuid.Clear(); in Clear() 80 void SetUUID(const lldb_private::UUID uuid) { m_uuid = uuid; } in SetUUID() 82 lldb_private::UUID GetUUID() const { return m_uuid; } in GetUUID() 118 lldb_private::UUID m_uuid; variable
|
H A D | DynamicLoaderFreeBSDKernel.cpp | 302 if (!m_uuid.IsValid() && memory_module_sp->GetUUID().IsValid()) in ReadMemoryModule() 303 m_uuid = memory_module_sp->GetUUID(); in ReadMemoryModule() 329 if (IsKernel() && m_uuid.IsValid()) { in LoadImageUsingMemoryModule() 331 s.Printf("Kernel UUID: %s\n", m_uuid.GetAsString().c_str()); in LoadImageUsingMemoryModule() 340 m_module_sp = target_images.FindModule(m_uuid); in LoadImageUsingMemoryModule() 368 ModuleSP existing_module_sp = target.GetImages().FindModule(m_uuid); in LoadImageUsingMemoryModule() 374 m_name.c_str(), m_uuid.GetAsString().c_str()); in LoadImageUsingMemoryModule() 378 m_uuid = m_module_sp->GetUUID(); in LoadImageUsingMemoryModule()
|
/llvm-project/lldb/source/Interpreter/ |
H A D | OptionGroupUUID.cpp | 33 error = m_uuid.SetValueFromString(option_arg); in SetOptionValue() 35 m_uuid.SetOptionWasSet(); in SetOptionValue() 47 m_uuid.Clear(); in OptionParsingStarting()
|
H A D | OptionValueUUID.cpp | 26 m_uuid.Dump(strm); in DumpValue() 41 if (!m_uuid.SetFromStringRef(value)) in SetValueFromString()
|
/llvm-project/lldb/source/Core/ |
H A D | DataFileCache.cpp | 170 m_uuid = uuid; in CacheSignature() 186 m_uuid = uuid; in CacheSignature() 214 if (m_uuid) { in Encode() 215 llvm::ArrayRef<uint8_t> uuid_bytes = m_uuid->GetBytes(); in Encode() 241 m_uuid = UUID(llvm::ArrayRef<uint8_t>(bytes, length)); in Decode()
|
/llvm-project/lldb/source/Plugins/ObjectFile/Placeholder/ |
H A D | ObjectFilePlaceholder.h | 45 lldb_private::UUID GetUUID() override { return m_uuid; } in GetUUID() 69 lldb_private::UUID m_uuid; variable
|
H A D | ObjectFilePlaceholder.cpp | 31 m_arch(module_spec.GetArchitecture()), m_uuid(module_spec.GetUUID()), in LLDB_PLUGIN_DEFINE()
|
/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/ |
H A D | ObjectFileBreakpad.h | 84 UUID GetUUID() override { return m_uuid; } in GetUUID() 94 UUID m_uuid; variable
|
H A D | ObjectFileBreakpad.cpp | 113 m_arch(std::move(arch)), m_uuid(std::move(uuid)) {} in ObjectFileBreakpad()
|
/llvm-project/lldb/source/Plugins/ObjectFile/PDB/ |
H A D | ObjectFilePDB.h | 82 UUID GetUUID() override { return m_uuid; } in GetUUID() 97 UUID m_uuid;
|
H A D | ObjectFilePDB.cpp | 90 m_uuid = GetPDBUUID(*info_stream, *dbi_stream); in initPDBFile()
|
/llvm-project/lldb/source/Plugins/ObjectFile/COFF/ |
H A D | ObjectFileCOFF.h | 24 lldb_private::UUID m_uuid; variable 96 lldb_private::UUID GetUUID() override { return m_uuid; } in GetUUID()
|
/llvm-project/lldb/source/Plugins/ObjectFile/wasm/ |
H A D | ObjectFileWasm.h | 92 UUID GetUUID() override { return m_uuid; } in GetUUID() 146 UUID m_uuid; variable
|
/llvm-project/lldb/source/Plugins/ObjectFile/JSON/ |
H A D | ObjectFileJSON.h | 81 UUID GetUUID() override { return m_uuid; } in GetUUID() 105 UUID m_uuid; variable
|
H A D | ObjectFileJSON.cpp | 155 m_arch(std::move(arch)), m_uuid(std::move(uuid)), m_type(type), in ObjectFileJSON()
|
/llvm-project/lldb/source/Plugins/ObjectFile/PECOFF/ |
H A D | ObjectFilePECOFF.cpp | 1101 if (m_uuid.IsValid()) in GetUUID() 1102 return m_uuid; in GetUUID() 1107 m_uuid = GetCoffUUID(*m_binary); in GetDebugLink() 1108 return m_uuid; in GetDebugLink()
|
H A D | ObjectFilePECOFF.h | 289 lldb_private::UUID m_uuid; variable
|
/llvm-project/lldb/source/Host/macosx/objcxx/ |
H A D | HostInfoMacOSX.mm | 632 const UUID &GetUUID() const { return m_uuid; } 643 UUID m_uuid; 702 m_uuid = UUID(dsc_uuid);
|
/llvm-project/lldb/source/Plugins/ObjectFile/ELF/ |
H A D | ObjectFileELF.h | 208 lldb_private::UUID m_uuid; 204 lldb_private::UUID m_uuid; global() variable
|