Home
last modified time | relevance | path

Searched refs:m_uuid (Results 1 – 25 of 29) sorted by relevance

12

/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionValueUUID.h21 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 DOptionGroupUUID.h32 const OptionValueUUID &GetOptionValue() const { return m_uuid; } in GetOptionValue()
35 OptionValueUUID m_uuid;
/llvm-project/lldb/include/lldb/Core/
H A DModuleSpec.h36 : 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 DDataFileCache.h111 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 DDynamicLoaderDarwinKernel.cpp613 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 DDynamicLoaderDarwinKernel.h127 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 DDynamicLoaderFreeBSDKernel.h62 : 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 DDynamicLoaderFreeBSDKernel.cpp302 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 DOptionGroupUUID.cpp33 error = m_uuid.SetValueFromString(option_arg); in SetOptionValue()
35 m_uuid.SetOptionWasSet(); in SetOptionValue()
47 m_uuid.Clear(); in OptionParsingStarting()
H A DOptionValueUUID.cpp26 m_uuid.Dump(strm); in DumpValue()
41 if (!m_uuid.SetFromStringRef(value)) in SetValueFromString()
/llvm-project/lldb/source/Core/
H A DDataFileCache.cpp170 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 DObjectFilePlaceholder.h45 lldb_private::UUID GetUUID() override { return m_uuid; } in GetUUID()
69 lldb_private::UUID m_uuid; variable
H A DObjectFilePlaceholder.cpp31 m_arch(module_spec.GetArchitecture()), m_uuid(module_spec.GetUUID()), in LLDB_PLUGIN_DEFINE()
/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/
H A DObjectFileBreakpad.h84 UUID GetUUID() override { return m_uuid; } in GetUUID()
94 UUID m_uuid; variable
H A DObjectFileBreakpad.cpp113 m_arch(std::move(arch)), m_uuid(std::move(uuid)) {} in ObjectFileBreakpad()
/llvm-project/lldb/source/Plugins/ObjectFile/PDB/
H A DObjectFilePDB.h82 UUID GetUUID() override { return m_uuid; } in GetUUID()
97 UUID m_uuid;
H A DObjectFilePDB.cpp90 m_uuid = GetPDBUUID(*info_stream, *dbi_stream); in initPDBFile()
/llvm-project/lldb/source/Plugins/ObjectFile/COFF/
H A DObjectFileCOFF.h24 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 DObjectFileWasm.h92 UUID GetUUID() override { return m_uuid; } in GetUUID()
146 UUID m_uuid; variable
/llvm-project/lldb/source/Plugins/ObjectFile/JSON/
H A DObjectFileJSON.h81 UUID GetUUID() override { return m_uuid; } in GetUUID()
105 UUID m_uuid; variable
H A DObjectFileJSON.cpp155 m_arch(std::move(arch)), m_uuid(std::move(uuid)), m_type(type), in ObjectFileJSON()
/llvm-project/lldb/source/Plugins/ObjectFile/PECOFF/
H A DObjectFilePECOFF.cpp1101 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 DObjectFilePECOFF.h289 lldb_private::UUID m_uuid; variable
/llvm-project/lldb/source/Host/macosx/objcxx/
H A DHostInfoMacOSX.mm632 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 DObjectFileELF.h208 lldb_private::UUID m_uuid;
204 lldb_private::UUID m_uuid; global() variable

12