Home
last modified time | relevance | path

Searched refs:REPLSP (Results 1 – 10 of 10) sorted by relevance

/llvm-project-15.0.7/lldb/source/Plugins/REPL/Clang/
H A DClangREPL.cpp46 lldb::REPLSP ClangREPL::CreateInstance(Status &error, in CreateInstance()
55 lldb::REPLSP result = std::make_shared<ClangREPL>(language, *target); in CreateInstance()
H A DClangREPL.h27 static lldb::REPLSP CreateInstance(Status &error, lldb::LanguageType language,
/llvm-project-15.0.7/lldb/include/lldb/Expression/
H A DREPL.h55 static lldb::REPLSP Create(Status &Status, lldb::LanguageType language,
/llvm-project-15.0.7/lldb/include/lldb/
H A Dlldb-private-interfaces.h110 typedef lldb::REPLSP (*REPLCreateInstance)(Status &error,
H A Dlldb-forward.h371 typedef std::shared_ptr<lldb_private::REPL> REPLSP; typedef
/llvm-project-15.0.7/lldb/source/Expression/
H A DREPL.cpp36 lldb::REPLSP REPL::Create(Status &err, lldb::LanguageType language, in Create()
40 lldb::REPLSP ret; in Create()
/llvm-project-15.0.7/lldb/include/lldb/Target/
H A DTarget.h1411 lldb::REPLSP GetREPL(Status &err, lldb::LanguageType language,
1414 void SetREPL(lldb::LanguageType language, lldb::REPLSP repl_sp);
1517 typedef std::map<lldb::LanguageType, lldb::REPLSP> REPLMap;
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectExpression.cpp585 REPLSP repl_sp(target.GetREPL(repl_error, m_command_options.language, in DoExecute()
/llvm-project-15.0.7/lldb/source/Target/
H A DTarget.cpp219 lldb::REPLSP Target::GetREPL(Status &err, lldb::LanguageType language, in GetREPL()
232 return REPLSP(); in GetREPL()
236 return REPLSP(); in GetREPL()
250 return lldb::REPLSP(); in GetREPL()
254 lldb::REPLSP ret = REPL::Create(err, language, debugger, this, repl_options); in GetREPL()
266 return lldb::REPLSP(); in GetREPL()
269 void Target::SetREPL(lldb::LanguageType language, lldb::REPLSP repl_sp) { in SetREPL()
/llvm-project-15.0.7/lldb/source/Core/
H A DDebugger.cpp1989 REPLSP repl_sp(REPL::Create(err, language, this, target, repl_options)); in RunREPL()