Searched refs:m_module_sp (Results 1 – 4 of 4) sorted by relevance
| /src/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/FreeBSD-Kernel/ |
| H A D | DynamicLoaderFreeBSDKernel.cpp | 338 if (!m_module_sp) { in LoadImageUsingMemoryModule() 340 m_module_sp = target_images.FindModule(m_uuid); in LoadImageUsingMemoryModule() 343 if (!m_module_sp) { in LoadImageUsingMemoryModule() 350 m_module_sp = std::make_shared<Module>(module_spec.GetFileSpec(), in LoadImageUsingMemoryModule() 355 if (!m_module_sp) in LoadImageUsingMemoryModule() 356 m_module_sp = target.GetOrCreateModule(module_spec, true); in LoadImageUsingMemoryModule() 357 if (IsKernel() && !m_module_sp) { in LoadImageUsingMemoryModule() 364 if (m_module_sp) { in LoadImageUsingMemoryModule() 367 if (!IsKernel() && !is_kmod(m_module_sp.get())) { in LoadImageUsingMemoryModule() 378 m_uuid = m_module_sp->GetUUID(); in LoadImageUsingMemoryModule() [all …]
|
| H A D | DynamicLoaderFreeBSDKernel.h | 62 : m_module_sp(), m_memory_module_sp(), m_uuid(), m_name(), m_path() {} in KModImageInfo() 68 m_module_sp.reset(); in Clear() 92 void SetModule(lldb::ModuleSP module) { m_module_sp = module; } in SetModule() 94 lldb::ModuleSP GetModule() { return m_module_sp; } in GetModule() 115 lldb::ModuleSP m_module_sp;
|
| /src/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | SymbolContext.cpp | 931 : m_target_sp(target_sp), m_module_spec(), m_module_sp(), m_file_spec_up(), in SymbolContextSpecifier() 975 m_module_sp = module_sp; in AddSpecification() 1036 if (m_module_sp.get() != nullptr) { in SymbolContextMatches() 1037 if (m_module_sp.get() != sc.module_sp.get()) in SymbolContextMatches() 1133 if (m_module_sp) { in GetDescription() 1134 m_module_sp->GetFileSpec().GetPath(path_str, PATH_MAX); in GetDescription()
|
| /src/contrib/llvm-project/lldb/include/lldb/Symbol/ |
| H A D | SymbolContext.h | 357 lldb::ModuleSP m_module_sp; variable
|