Home
last modified time | relevance | path

Searched refs:expr_options (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DREPL.cpp323 EvaluateExpressionOptions expr_options = m_expr_options; in IOHandlerInputComplete() local
324 expr_options.SetCoerceToId(m_varobj_options.use_objc); in IOHandlerInputComplete()
325 expr_options.SetKeepInMemory(true); in IOHandlerInputComplete()
326 expr_options.SetUseDynamic(m_varobj_options.use_dynamic); in IOHandlerInputComplete()
327 expr_options.SetGenerateDebugInfo(true); in IOHandlerInputComplete()
328 expr_options.SetREPLEnabled(true); in IOHandlerInputComplete()
329 expr_options.SetColorizeErrors(colorize_err); in IOHandlerInputComplete()
330 expr_options.SetPoundLine(m_repl_source_path.c_str(), in IOHandlerInputComplete()
333 expr_options.SetLanguage(GetLanguage()); in IOHandlerInputComplete()
345 exe_ctx, expr_options, code.c_str(), expr_prefix, result_valobj_sp); in IOHandlerInputComplete()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectExpression.cpp567 EvaluateExpressionOptions expr_options; in GetExprOptions() local
568 expr_options.SetUnwindOnError(command_options.unwind_on_error); in GetExprOptions()
569 expr_options.SetIgnoreBreakpoints(command_options.ignore_breakpoints); in GetExprOptions()
570 expr_options.SetTryAllThreads(command_options.try_all_threads); in GetExprOptions()
573 expr_options.SetTimeout(std::chrono::microseconds(command_options.timeout)); in GetExprOptions()
575 expr_options.SetTimeout(std::nullopt); in GetExprOptions()
577 return expr_options; in GetExprOptions()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.cpp530 EvaluateExpressionOptions expr_options; in EvaluateLibdlExpression() local
531 expr_options.SetUnwindOnError(true); in EvaluateLibdlExpression()
532 expr_options.SetIgnoreBreakpoints(true); in EvaluateLibdlExpression()
533 expr_options.SetExecutionPolicy(eExecutionPolicyAlways); in EvaluateLibdlExpression()
534 expr_options.SetLanguage(eLanguageTypeC_plus_plus); in EvaluateLibdlExpression()
535 expr_options.SetTrapExceptions(false); // dlopen can't throw exceptions, so in EvaluateLibdlExpression()
537 expr_options.SetTimeout(process->GetUtilityExpressionTimeout()); in EvaluateLibdlExpression()
540 exe_ctx, expr_options, expr_cstr, expr_prefix, result_valobj_sp); in EvaluateLibdlExpression()
/freebsd/contrib/llvm-project/lldb/include/lldb/Expression/
H A DREPL.h121 const EvaluateExpressionOptions &expr_options, in OnExpressionEvaluated() argument
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DStopInfo.cpp935 EvaluateExpressionOptions expr_options; in PerformAction() local
936 expr_options.SetUnwindOnError(true); in PerformAction()
937 expr_options.SetIgnoreBreakpoints(true); in PerformAction()
940 exe_ctx, expr_options, wp_sp->GetConditionText(), in PerformAction()