Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectExpression.cpp605 REPLSP repl_sp(target.GetREPL(repl_error, m_command_options.language, in DoExecute() local
608 if (!repl_sp) { in DoExecute()
610 repl_sp = target.GetREPL(repl_error, m_command_options.language, in DoExecute()
618 if (repl_sp) { in DoExecute()
620 repl_sp->SetEvaluateOptions( in DoExecute()
622 repl_sp->SetFormatOptions(m_format_options); in DoExecute()
623 repl_sp->SetValueObjectDisplayOptions(m_varobj_options); in DoExecute()
626 IOHandlerSP io_handler_sp(repl_sp->GetIOHandler()); in DoExecute()
/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DDebugger.cpp1687 REPLSP repl_sp(REPL::Create(err, language, this, target, repl_options)); in RunREPL() local
1693 if (!repl_sp) { in RunREPL()
1699 repl_sp->SetCompilerOptions(repl_options); in RunREPL()
1700 repl_sp->RunLoop(); in RunREPL()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/
H A DTarget.h1358 void SetREPL(lldb::LanguageType language, lldb::REPLSP repl_sp);
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DTarget.cpp263 void Target::SetREPL(lldb::LanguageType language, lldb::REPLSP repl_sp) { in SetREPL() argument
266 m_repl_map[language] = repl_sp; in SetREPL()