Home
last modified time | relevance | path

Searched refs:m_core_module_sp (Results 1 – 2 of 2) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
H A DProcessElfCore.cpp84 if (!m_core_module_sp && FileSystem::Instance().Exists(m_core_file)) { in CanDebug()
86 Status error(ModuleList::GetSharedModule(core_module_spec, m_core_module_sp, in CanDebug()
88 if (m_core_module_sp) { in CanDebug()
89 ObjectFile *core_objfile = m_core_module_sp->GetObjectFile(); in CanDebug()
154 if (!m_core_module_sp) { in DoLoadCore()
159 ObjectFileELF *core = (ObjectFileELF *)(m_core_module_sp->GetObjectFile()); in DoLoadCore()
204 ArchSpec arch(m_core_module_sp->GetArchitecture()); in DoLoadCore()
207 ArchSpec core_arch(m_core_module_sp->GetArchitecture()); in DoLoadCore()
336 ObjectFile *core_objfile = m_core_module_sp->GetObjectFile(); in DoReadMemory()
929 ArchSpec arch = m_core_module_sp->GetObjectFile()->GetArchitecture(); in GetArchitecture()
H A DProcessElfCore.h126 lldb::ModuleSP m_core_module_sp; variable