Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/FreeBSD-Kernel/
H A DDynamicLoaderFreeBSDKernel.cpp338 if (!m_module_sp) { in LoadImageUsingMemoryModule()
343 if (!m_module_sp) { in LoadImageUsingMemoryModule()
355 if (!m_module_sp) in LoadImageUsingMemoryModule()
364 if (m_module_sp) { in LoadImageUsingMemoryModule()
389 if (is_kmod(m_module_sp.get()) && is_reloc(m_module_sp.get())) { in LoadImageUsingMemoryModule()
396 if (m_module_sp) in LoadImageUsingMemoryModule()
401 m_module_sp.reset(); in LoadImageUsingMemoryModule()
409 m_module_sp.reset(); in LoadImageUsingMemoryModule()
462 m_module_sp.reset(); in LoadImageUsingMemoryModule()
464 m_module_sp.reset(); in LoadImageUsingMemoryModule()
[all …]
H A DDynamicLoaderFreeBSDKernel.h62 : 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;
/freebsd-14.2/contrib/llvm-project/lldb/source/Symbol/
H A DSymbolContext.cpp922 : m_target_sp(target_sp), m_module_spec(), m_module_sp(), m_file_spec_up(), in SymbolContextSpecifier()
966 m_module_sp = module_sp; in AddSpecification()
1027 if (m_module_sp.get() != nullptr) { in SymbolContextMatches()
1028 if (m_module_sp.get() != sc.module_sp.get()) in SymbolContextMatches()
1124 if (m_module_sp) { in GetDescription()
1125 m_module_sp->GetFileSpec().GetPath(path_str, PATH_MAX); in GetDescription()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DSymbolContext.h356 lldb::ModuleSP m_module_sp; variable