Home
last modified time | relevance | path

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

/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() local
588 if (!repl_sp) { in DoExecute()
590 repl_sp = target.GetREPL(repl_error, m_command_options.language, in DoExecute()
598 if (repl_sp) { in DoExecute()
600 repl_sp->SetEvaluateOptions( in DoExecute()
602 repl_sp->SetFormatOptions(m_format_options); in DoExecute()
603 repl_sp->SetValueObjectDisplayOptions(m_varobj_options); in DoExecute()
606 IOHandlerSP io_handler_sp(repl_sp->GetIOHandler()); in DoExecute()
/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() local
1995 if (!repl_sp) { in RunREPL()
2001 repl_sp->SetCompilerOptions(repl_options); in RunREPL()
2002 repl_sp->RunLoop(); in RunREPL()
/llvm-project-15.0.7/lldb/include/lldb/Target/
H A DTarget.h1414 void SetREPL(lldb::LanguageType language, lldb::REPLSP repl_sp);
/llvm-project-15.0.7/lldb/source/Target/
H A DTarget.cpp269 void Target::SetREPL(lldb::LanguageType language, lldb::REPLSP repl_sp) { in SetREPL() argument
272 m_repl_map[language] = repl_sp; in SetREPL()