Home
last modified time | relevance | path

Searched refs:m_module_wp (Results 1 – 6 of 6) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DModuleChild.cpp15 : m_module_wp(module_sp) {} in ModuleChild()
18 : m_module_wp(rhs.m_module_wp) {} in ModuleChild()
24 m_module_wp = rhs.m_module_wp; in operator =()
28 lldb::ModuleSP ModuleChild::GetModule() const { return m_module_wp.lock(); } in GetModule()
31 m_module_wp = module_sp; in SetModule()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DType.cpp767 : m_module_wp(rhs.m_module_wp), m_static_type(rhs.m_static_type), in TypeImpl()
799 m_module_wp = type_sp->GetModule(); in SetType()
801 m_module_wp = lldb::ModuleWP(); in SetType()
805 m_module_wp = lldb::ModuleWP(); in SetType()
817 m_module_wp = lldb::ModuleWP(); in SetType()
823 m_module_wp = pair.GetModule(); in SetType()
830 m_module_wp = rhs.m_module_wp; in operator =()
846 module_sp = m_module_wp.lock(); in CheckModule()
854 if (empty_module_wp.owner_before(m_module_wp) || in CheckModule()
855 m_module_wp.owner_before(empty_module_wp)) { in CheckModule()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Expression/
H A DDWARFExpression.h159 void SetModule(const lldb::ModuleSP &module) { m_module_wp = module; } in SetModule()
406 lldb::ModuleWP m_module_wp; ///< Module which defined this expression. variable
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/
H A DModuleChild.h79 lldb::ModuleWP m_module_wp; ///< The Module that owns the object that inherits
/freebsd-12.1/contrib/llvm/tools/lldb/source/Expression/
H A DDWARFExpression.cpp58 : m_module_wp(), m_data(), m_dwarf_cu(dwarf_cu), in DWARFExpression()
62 : m_module_wp(rhs.m_module_wp), m_data(rhs.m_data), in DWARFExpression()
71 : m_module_wp(), m_data(data, data_offset, data_length), in DWARFExpression()
75 m_module_wp = module_sp; in DWARFExpression()
95 m_module_wp = module_sp; in CopyOpcodeData()
128 m_module_wp = module_sp; in SetOpcodeData()
1140 m_module_wp = new_module_sp; in LinkThreadLocalStorage()
1250 ModuleSP module_sp = m_module_wp.lock(); in Evaluate()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DType.h436 lldb::ModuleWP m_module_wp; variable