Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/lldb/include/lldb/Interpreter/
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;
DOptionGroupUUID.h32 const OptionValueUUID &GetOptionValue() const { return m_uuid; } in GetOptionValue()
35 OptionValueUUID m_uuid;
/openbsd/src/gnu/llvm/lldb/include/lldb/Core/
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
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 &&
DModule.h1044 UUID m_uuid; ///< Each module is assumed to have a unique identifier to help variable
/openbsd/src/gnu/llvm/lldb/source/Interpreter/
DOptionGroupUUID.cpp33 error = m_uuid.SetValueFromString(option_arg); in SetOptionValue()
35 m_uuid.SetOptionWasSet(); in SetOptionValue()
47 m_uuid.Clear(); in OptionParsingStarting()
DOptionValueUUID.cpp26 m_uuid.Dump(&strm); in DumpValue()
41 if (!m_uuid.SetFromStringRef(value)) in SetValueFromString()
/openbsd/src/gnu/llvm/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/
DDynamicLoaderDarwinKernel.cpp610 if (m_uuid.IsValid() || rhs.GetUUID().IsValid()) { in operator ==()
611 return m_uuid == rhs.GetUUID(); in operator ==()
626 m_uuid = uuid; in SetUUID()
630 return m_uuid; in GetUUID()
670 if (m_uuid.IsValid()) { in ReadMemoryModule()
671 if (m_uuid != memory_module_sp->GetUUID()) { in ReadMemoryModule()
677 m_uuid.GetAsString().c_str(), m_load_address, in ReadMemoryModule()
685 if (!m_uuid.IsValid() && memory_module_sp->GetUUID().IsValid()) { in ReadMemoryModule()
686 m_uuid = memory_module_sp->GetUUID(); in ReadMemoryModule()
723 if (m_uuid.IsValid() == false) { in LoadImageUsingMemoryModule()
[all …]
DDynamicLoaderDarwinKernel.h126 KextImageInfo() : m_name(), m_module_sp(), m_memory_module_sp(), m_uuid() {} in KextImageInfo()
132 m_uuid.Clear(); in Clear()
202 m_uuid; // UUID for this dylib if it has one, else all zeros variable
/openbsd/src/gnu/llvm/lldb/source/Core/
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()
DModule.cpp350 m_uuid = obj_file->GetUUID(); in GetUUID()
355 return m_uuid; in GetUUID()
361 m_uuid = uuid; in SetUUID()
/openbsd/src/gnu/llvm/lldb/source/Plugins/ObjectFile/Breakpad/
DObjectFileBreakpad.h84 UUID GetUUID() override { return m_uuid; } in GetUUID()
94 UUID m_uuid; variable
DObjectFileBreakpad.cpp113 m_arch(std::move(arch)), m_uuid(std::move(uuid)) {} in ObjectFileBreakpad()
/openbsd/src/gnu/llvm/lldb/source/Plugins/ObjectFile/wasm/
DObjectFileWasm.h92 UUID GetUUID() override { return m_uuid; } in GetUUID()
146 UUID m_uuid; variable
/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/minidump/
DProcessMinidump.cpp60 m_arch(module_spec.GetArchitecture()), m_uuid(module_spec.GetUUID()), in PlaceholderObjectFile()
77 UUID GetUUID() override { return m_uuid; } in GetUUID()
123 UUID m_uuid; member in __anon0cd9e6bc0111::PlaceholderObjectFile
/openbsd/src/gnu/llvm/lldb/source/Host/macosx/objcxx/
DHostInfoMacOSX.mm576 const UUID &GetUUID() const { return m_uuid; }
587 UUID m_uuid;
643 m_uuid = UUID(dsc_uuid);
/openbsd/src/gnu/llvm/lldb/source/Plugins/ObjectFile/PECOFF/
DObjectFilePECOFF.cpp1081 if (m_uuid.IsValid()) in GetUUID()
1082 return m_uuid; in GetUUID()
1087 m_uuid = GetCoffUUID(*m_binary); in GetUUID()
1088 return m_uuid; in GetUUID()
DObjectFilePECOFF.h287 lldb_private::UUID m_uuid; variable
/openbsd/src/gnu/llvm/lldb/source/Plugins/ObjectFile/ELF/
DObjectFileELF.h201 lldb_private::UUID m_uuid; variable
DObjectFileELF.cpp792 if (!m_uuid) { in GetUUID()
808 m_uuid = UUID(data, sizeof(data)); in GetUUID()
816 m_uuid = UUID(&data, sizeof(data)); in GetUUID()
821 return m_uuid; in GetUUID()
1601 return GetSectionHeaderInfo(m_section_headers, m_data, m_header, m_uuid, in ParseSectionHeaders()