Searched refs:m_uuid (Results 1 - 13 of 13) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionValueUUID.h19 OptionValueUUID() : OptionValue(), m_uuid() {}
21 OptionValueUUID(const UUID &uuid) : OptionValue(), m_uuid(uuid) {}
40 m_uuid.Clear();
49 UUID &GetCurrentValue() { return m_uuid; }
51 const UUID &GetCurrentValue() const { return m_uuid; }
53 void SetCurrentValue(const UUID &value) { m_uuid = value; }
59 UUID m_uuid; member in class:lldb_private::OptionValueUUID
H A DOptionGroupUUID.h33 const OptionValueUUID &GetOptionValue() const { return m_uuid; }
36 OptionValueUUID m_uuid; member in class:lldb_private::OptionGroupUUID
/freebsd-13-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionGroupUUID.cpp16 OptionGroupUUID::OptionGroupUUID() : m_uuid() {}
37 error = m_uuid.SetValueFromString(option_arg);
39 m_uuid.SetOptionWasSet();
51 m_uuid.Clear();
H A DOptionValueUUID.cpp26 m_uuid.Dump(&strm);
41 if (!m_uuid.SetFromStringRef(value))
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DModuleSpec.h29 : m_file(), m_platform_file(), m_symbol_file(), m_arch(), m_uuid(),
39 m_uuid(uuid), m_object_name(), m_object_offset(0), m_source_mappings(),
49 m_uuid(), m_object_name(), m_object_offset(0),
99 UUID *GetUUIDPtr() { return (m_uuid.IsValid() ? &m_uuid : nullptr); }
102 return (m_uuid.IsValid() ? &m_uuid : nullptr);
105 UUID &GetUUID() { return m_uuid; }
107 const UUID &GetUUID() const { return m_uuid; }
140 m_uuid
272 UUID m_uuid; member in class:lldb_private::ModuleSpec
[all...]
H A DModule.h944 UUID m_uuid; ///< Each module is assumed to have a unique identifier to help member in class:lldb_private::Module
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Breakpad/
H A DObjectFileBreakpad.h86 UUID GetUUID() override { return m_uuid; }
96 UUID m_uuid; member in class:lldb_private::breakpad::ObjectFileBreakpad
H A DObjectFileBreakpad.cpp117 m_arch(std::move(arch)), m_uuid(std::move(uuid)) {}
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/wasm/
H A DObjectFileWasm.h92 UUID GetUUID() override { return m_uuid; }
146 UUID m_uuid; member in class:lldb_private::wasm::ObjectFileWasm
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.h196 lldb_private::UUID m_uuid; member in class:ObjectFileELF
H A DObjectFileELF.cpp755 if (!m_uuid) {
771 m_uuid = UUID::fromData(data, sizeof(data));
779 m_uuid = UUID::fromData(&data, sizeof(data));
784 return m_uuid;
1541 return GetSectionHeaderInfo(m_section_headers, m_data, m_header, m_uuid,
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
H A DProcessMinidump.cpp58 m_arch(module_spec.GetArchitecture()), m_uuid(module_spec.GetUUID()),
74 UUID GetUUID() override { return m_uuid; }
120 UUID m_uuid; member in class:__anon2946::PlaceholderObjectFile
/freebsd-13-stable/contrib/llvm-project/lldb/source/Core/
H A DModule.cpp354 m_uuid = obj_file->GetUUID();
359 return m_uuid;
365 m_uuid = uuid;

Completed in 204 milliseconds