Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectExpression.cpp628 REPLSP repl_sp(target.GetREPL(repl_error, m_command_options.language, in DoExecute() local
631 if (!repl_sp) { in DoExecute()
633 repl_sp = target.GetREPL(repl_error, m_command_options.language, in DoExecute()
641 if (repl_sp) { in DoExecute()
643 repl_sp->SetEvaluateOptions( in DoExecute()
645 repl_sp->SetFormatOptions(m_format_options); in DoExecute()
646 repl_sp->SetValueObjectDisplayOptions(m_varobj_options); in DoExecute()
649 IOHandlerSP io_handler_sp(repl_sp->GetIOHandler()); in DoExecute()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DDebugger.cpp2216 REPLSP repl_sp(REPL::Create(err, language, this, target, repl_options)); in RunREPL() local
2222 if (!repl_sp) { in RunREPL()
2228 repl_sp->SetCompilerOptions(repl_options); in RunREPL()
2229 repl_sp->RunLoop(); in RunREPL()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DTarget.h1466 void SetREPL(lldb::LanguageType language, lldb::REPLSP repl_sp);
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DTarget.cpp273 void Target::SetREPL(lldb::LanguageType language, lldb::REPLSP repl_sp) { in SetREPL() argument
276 m_repl_map[language] = repl_sp; in SetREPL()