Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Plugins/ObjectFile/JIT/
DObjectFileJIT.cpp94 const ObjectFileJITDelegateSP &delegate_sp) in ObjectFileJIT() argument
96 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()
[all …]
DObjectFileJIT.h20 const lldb::ObjectFileJITDelegateSP &delegate_sp);
/external/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
DClangASTImporter.cpp44 ImporterDelegateSP delegate_sp(GetDelegate(&dst_clang_ast, &src_clang_ast)); in CopyType() local
45 if (!delegate_sp) in CopyType()
48 ASTImporterDelegate::CxxModuleScope std_scope(*delegate_sp, &dst_clang_ast); in CopyType()
50 llvm::Expected<QualType> ret_or_error = delegate_sp->Import(src_qual_type); in CopyType()
68 ImporterDelegateSP delegate_sp; in CopyDecl() local
71 delegate_sp = GetDelegate(dst_ast, src_ast); in CopyDecl()
73 ASTImporterDelegate::CxxModuleScope std_scope(*delegate_sp, dst_ast); in CopyDecl()
75 if (!delegate_sp) in CopyDecl()
78 llvm::Expected<clang::Decl *> result = delegate_sp->Import(decl); in CopyDecl()
567 ImporterDelegateSP delegate_sp( in CompleteTagDecl() local
[all …]
/external/llvm-project/lldb/source/Plugins/Process/Windows/Common/
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()
/external/llvm-project/lldb/source/Core/
DIOHandlerCursesGUI.cpp793 void SetDelegate(const WindowDelegateSP &delegate_sp) { in SetDelegate() argument
794 m_delegate_sp = delegate_sp; in SetDelegate()
893 void SetDelegate(const MenuDelegateSP &delegate_sp) { in SetDelegate() argument
894 m_delegate_sp = delegate_sp; in SetDelegate()
1817 TreeWindowDelegate(Debugger &debugger, const TreeDelegateSP &delegate_sp) in TreeWindowDelegate() argument
1818 : m_debugger(debugger), m_delegate_sp(delegate_sp), in TreeWindowDelegate()
1819 m_root(nullptr, *delegate_sp, true), m_selected_item(nullptr), in TreeWindowDelegate()
/external/llvm-project/lldb/source/Commands/
DCommandObjectThread.cpp2010 CommandObjectSP delegate_sp = in DoGetProxyCommandObject() local
2012 if (!delegate_sp) in DoGetProxyCommandObject()
2017 return delegate_sp; in DoGetProxyCommandObject()