Searched refs:expr_options (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/lldb/source/Expression/ |
H A D | REPL.cpp | 321 EvaluateExpressionOptions expr_options = m_expr_options; in IOHandlerInputComplete() local 322 expr_options.SetCoerceToId(m_varobj_options.use_objc); in IOHandlerInputComplete() 323 expr_options.SetKeepInMemory(true); in IOHandlerInputComplete() 324 expr_options.SetUseDynamic(m_varobj_options.use_dynamic); in IOHandlerInputComplete() 325 expr_options.SetGenerateDebugInfo(true); in IOHandlerInputComplete() 326 expr_options.SetREPLEnabled(true); in IOHandlerInputComplete() 327 expr_options.SetColorizeErrors(colorize_err); in IOHandlerInputComplete() 328 expr_options.SetPoundLine(m_repl_source_path.c_str(), in IOHandlerInputComplete() 331 expr_options.SetLanguage(GetLanguage()); in IOHandlerInputComplete() 344 UserExpression::Evaluate(exe_ctx, expr_options, cod in IOHandlerInputComplete() [all...] |
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectExpression.cpp | 576 EvaluateExpressionOptions expr_options; in GetExprOptions() local 577 expr_options.SetUnwindOnError(command_options.unwind_on_error); in GetExprOptions() 578 expr_options.SetIgnoreBreakpoints(command_options.ignore_breakpoints); in GetExprOptions() 579 expr_options.SetTryAllThreads(command_options.try_all_threads); in GetExprOptions() 582 expr_options.SetTimeout(std::chrono::microseconds(command_options.timeout)); in GetExprOptions() 584 expr_options.SetTimeout(std::nullopt); in GetExprOptions() 586 return expr_options; in GetExprOptions()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/POSIX/ |
H A D | PlatformPOSIX.cpp | 521 EvaluateExpressionOptions expr_options; in EvaluateLibdlExpression() local 522 expr_options.SetUnwindOnError(true); in EvaluateLibdlExpression() 523 expr_options.SetIgnoreBreakpoints(true); in EvaluateLibdlExpression() 524 expr_options.SetExecutionPolicy(eExecutionPolicyAlways); in EvaluateLibdlExpression() 525 expr_options.SetLanguage(eLanguageTypeC_plus_plus); in EvaluateLibdlExpression() 526 expr_options.SetTrapExceptions(false); // dlopen can't throw exceptions, so in EvaluateLibdlExpression() 528 expr_options.SetTimeout(process->GetUtilityExpressionTimeout()); in EvaluateLibdlExpression() 532 UserExpression::Evaluate(exe_ctx, expr_options, expr_cstr, expr_prefix, in EvaluateLibdlExpression()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Expression/ |
H A D | REPL.h | 121 const EvaluateExpressionOptions &expr_options, in OnExpressionEvaluated() argument
|
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | StopInfo.cpp | 914 EvaluateExpressionOptions expr_options; in PerformAction() local 915 expr_options.SetUnwindOnError(true); in PerformAction() 916 expr_options.SetIgnoreBreakpoints(true); in PerformAction() 920 exe_ctx, expr_options, wp_sp->GetConditionText(), in PerformAction()
|