Home
last modified time | relevance | path

Searched refs:m_module_sp (Results 1 – 8 of 8) sorted by relevance

/llvm-project-15.0.7/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/
H A DDynamicLoaderDarwinKernel.cpp567 if (m_module_sp) { in LoadImageAtFileAddress()
576 m_module_sp = module_sp; in SetModule()
588 return m_module_sp; in GetModule()
729 m_module_sp.reset(); in ReadMemoryModule()
776 if (!m_module_sp) { in LoadImageUsingMemoryModule()
827 if (!m_module_sp) { in LoadImageUsingMemoryModule()
841 if (m_module_sp) { in LoadImageUsingMemoryModule()
854 if (m_module_sp) in LoadImageUsingMemoryModule()
955 if (m_module_sp) in GetAddressByteSize()
963 if (m_module_sp) in GetByteOrder()
[all …]
H A DDynamicLoaderDarwinKernel.h126 KextImageInfo() : m_name(), m_module_sp(), m_memory_module_sp(), m_uuid() {} in KextImageInfo()
133 m_module_sp.reset(); in Clear()
196 lldb::ModuleSP m_module_sp; variable
/llvm-project-15.0.7/lldb/unittests/TestingSupport/Symbol/
H A DYAMLModuleTester.h31 lldb::ModuleSP m_module_sp; variable
38 lldb::ModuleSP GetModule() const { return m_module_sp; } in GetModule()
H A DYAMLModuleTester.cpp22 m_module_sp = std::make_shared<Module>(m_file->moduleSpec()); in YAMLModuleTester()
23 auto &symfile = *llvm::cast<SymbolFileDWARF>(m_module_sp->GetSymbolFile()); in YAMLModuleTester()
/llvm-project-15.0.7/lldb/unittests/Symbol/
H A DTestLineEntry.cpp44 ModuleSP m_module_sp; member in LineEntryTest
51 m_module_sp = std::make_shared<Module>(m_file->moduleSpec()); in SetUp()
60 m_module_sp->ResolveSymbolContextsForFileSpec( in GetLineEntriesForLine()
/llvm-project-15.0.7/lldb/source/Symbol/
H A DSymbolContext.cpp921 : m_target_sp(target_sp), m_module_spec(), m_module_sp(), m_file_spec_up(), in SymbolContextSpecifier()
965 m_module_sp = module_sp; in AddSpecification()
1026 if (m_module_sp.get() != nullptr) { in SymbolContextMatches()
1027 if (m_module_sp.get() != sc.module_sp.get()) in SymbolContextMatches()
1123 if (m_module_sp) { in GetDescription()
1124 m_module_sp->GetFileSpec().GetPath(path_str, PATH_MAX); in GetDescription()
/llvm-project-15.0.7/lldb/include/lldb/Symbol/
H A DSymbolContext.h361 lldb::ModuleSP m_module_sp; variable
/llvm-project-15.0.7/lldb/unittests/Expression/
H A DDWARFExpressionTest.cpp66 return ::Evaluate(expr, m_module_sp, m_dwarf_unit); in Eval()