Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/JIT/
H A DObjectFileJIT.cpp87 if (delegate_sp) { in ObjectFileJIT()
88 m_delegate_wp = delegate_sp; in ObjectFileJIT()
89 m_data.SetByteOrder(delegate_sp->GetByteOrder()); in ObjectFileJIT()
90 m_data.SetAddressByteSize(delegate_sp->GetAddressByteSize()); in ObjectFileJIT()
110 ObjectFileJITDelegateSP delegate_sp(m_delegate_wp.lock()); in ParseSymtab() local
111 if (delegate_sp) in ParseSymtab()
112 delegate_sp->PopulateSymtab(this, symtab); in ParseSymtab()
122 ObjectFileJITDelegateSP delegate_sp(m_delegate_wp.lock()); in CreateSections() local
123 if (delegate_sp) { in CreateSections()
124 delegate_sp->PopulateSectionList(this, *m_sections_up); in CreateSections()
[all …]
H A DObjectFileJIT.h20 const lldb::ObjectFileJITDelegateSP &delegate_sp);
/llvm-project-15.0.7/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangASTImporter.cpp46 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 …]
/llvm-project-15.0.7/lldb/source/Plugins/Process/Windows/Common/
H A DNativeProcessWindows.cpp55 DebugDelegateSP delegate_sp(new NativeDebugDelegate(*this)); in NativeProcessWindows() local
56 E = LaunchProcess(launch_info, delegate_sp).ToError(); in NativeProcessWindows()
68 DebugDelegateSP delegate_sp(new NativeDebugDelegate(*this)); in NativeProcessWindows() local
71 E = AttachProcess(pid, attach_info, delegate_sp).ToError(); in NativeProcessWindows()
/llvm-project-15.0.7/lldb/source/Core/
H A DIOHandlerCursesGUI.cpp907 void SetDelegate(const WindowDelegateSP &delegate_sp) { in SetDelegate() argument
908 m_delegate_sp = delegate_sp; in SetDelegate()
2468 FormWindowDelegate(FormDelegateSP &delegate_sp) : m_delegate_sp(delegate_sp) { in FormWindowDelegate() argument
3670 SearcherWindowDelegate(SearcherDelegateSP &delegate_sp) in SearcherWindowDelegate() argument
3671 : m_delegate_sp(delegate_sp), m_text_field("Search", "", false) { in SearcherWindowDelegate()
3887 void SetDelegate(const MenuDelegateSP &delegate_sp) { in SetDelegate() argument
3888 m_delegate_sp = delegate_sp; in SetDelegate()
4827 TreeWindowDelegate(Debugger &debugger, const TreeDelegateSP &delegate_sp) in TreeWindowDelegate() argument
4828 : m_debugger(debugger), m_delegate_sp(delegate_sp), in TreeWindowDelegate()
4829 m_root(nullptr, *delegate_sp, true) {} in TreeWindowDelegate()