Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ObjectFile/JIT/
H A DObjectFileJIT.cpp96 if (delegate_sp) { in ObjectFileJIT()
97 m_delegate_wp = delegate_sp; in ObjectFileJIT()
98 m_data.SetByteOrder(delegate_sp->GetByteOrder()); in ObjectFileJIT()
99 m_data.SetAddressByteSize(delegate_sp->GetAddressByteSize()); in ObjectFileJIT()
126 ObjectFileJITDelegateSP delegate_sp(m_delegate_wp.lock()); in GetSymtab() local
127 if (delegate_sp) in GetSymtab()
128 delegate_sp->PopulateSymtab(this, *m_symtab_up); in GetSymtab()
143 ObjectFileJITDelegateSP delegate_sp(m_delegate_wp.lock()); in CreateSections() local
144 if (delegate_sp) { in CreateSections()
145 delegate_sp->PopulateSectionList(this, *m_sections_up); in CreateSections()
[all …]
H A DObjectFileJIT.h20 const lldb::ObjectFileJITDelegateSP &delegate_sp);
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangASTImporter.cpp45 if (!delegate_sp) in CopyType()
68 ImporterDelegateSP delegate_sp; in CopyDecl() local
75 if (!delegate_sp) in CopyDecl()
562 ImporterDelegateSP delegate_sp( in CompleteTagDecl() local
567 if (delegate_sp) in CompleteTagDecl()
580 ImporterDelegateSP delegate_sp( in CompleteTagDeclWithOrigin() local
583 if (delegate_sp) in CompleteTagDeclWithOrigin()
602 ImporterDelegateSP delegate_sp( in CompleteObjCInterfaceDecl() local
605 if (delegate_sp) in CompleteObjCInterfaceDecl()
628 ImporterDelegateSP delegate_sp( in CompleteAndFetchChildren() local
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DIOHandlerCursesGUI.cpp895 void SetDelegate(const WindowDelegateSP &delegate_sp) { in SetDelegate() argument
896 m_delegate_sp = delegate_sp; in SetDelegate()
2079 FormWindowDelegate(FormDelegateSP &delegate_sp) in FormWindowDelegate() argument
2080 : m_delegate_sp(delegate_sp), m_selection_index(0), in FormWindowDelegate()
2676 void SetDelegate(const MenuDelegateSP &delegate_sp) { in SetDelegate() argument
2677 m_delegate_sp = delegate_sp; in SetDelegate()
3603 TreeWindowDelegate(Debugger &debugger, const TreeDelegateSP &delegate_sp) in TreeWindowDelegate() argument
3604 : m_debugger(debugger), m_delegate_sp(delegate_sp), in TreeWindowDelegate()
3605 m_root(nullptr, *delegate_sp, true), m_selected_item(nullptr), in TreeWindowDelegate()