Searched refs:expr_options (Results 1 – 5 of 5) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/lldb/source/Expression/ |
| H A D | REPL.cpp | 312 EvaluateExpressionOptions expr_options = m_expr_options; in IOHandlerInputComplete() local 313 expr_options.SetCoerceToId(m_varobj_options.use_objc); in IOHandlerInputComplete() 314 expr_options.SetKeepInMemory(true); in IOHandlerInputComplete() 315 expr_options.SetUseDynamic(m_varobj_options.use_dynamic); in IOHandlerInputComplete() 316 expr_options.SetGenerateDebugInfo(true); in IOHandlerInputComplete() 317 expr_options.SetREPLEnabled(true); in IOHandlerInputComplete() 318 expr_options.SetColorizeErrors(colorize_err); in IOHandlerInputComplete() 319 expr_options.SetPoundLine(m_repl_source_path.c_str(), in IOHandlerInputComplete() 322 expr_options.SetLanguage(GetLanguage()); in IOHandlerInputComplete() 335 UserExpression::Evaluate(exe_ctx, expr_options, code.c_str(), in IOHandlerInputComplete()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectExpression.cpp | 553 EvaluateExpressionOptions expr_options; in GetExprOptions() local 554 expr_options.SetUnwindOnError(command_options.unwind_on_error); in GetExprOptions() 555 expr_options.SetIgnoreBreakpoints(command_options.ignore_breakpoints); in GetExprOptions() 556 expr_options.SetTryAllThreads(command_options.try_all_threads); in GetExprOptions() 559 expr_options.SetTimeout(std::chrono::microseconds(command_options.timeout)); in GetExprOptions() 561 expr_options.SetTimeout(llvm::None); in GetExprOptions() 563 return expr_options; in GetExprOptions()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Platform/POSIX/ |
| H A D | PlatformPOSIX.cpp | 552 EvaluateExpressionOptions expr_options; in EvaluateLibdlExpression() local 553 expr_options.SetUnwindOnError(true); in EvaluateLibdlExpression() 554 expr_options.SetIgnoreBreakpoints(true); in EvaluateLibdlExpression() 555 expr_options.SetExecutionPolicy(eExecutionPolicyAlways); in EvaluateLibdlExpression() 556 expr_options.SetLanguage(eLanguageTypeC_plus_plus); in EvaluateLibdlExpression() 557 expr_options.SetTrapExceptions(false); // dlopen can't throw exceptions, so in EvaluateLibdlExpression() 559 expr_options.SetTimeout(process->GetUtilityExpressionTimeout()); in EvaluateLibdlExpression() 563 UserExpression::Evaluate(exe_ctx, expr_options, expr_cstr, expr_prefix, in EvaluateLibdlExpression()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Target/ |
| H A D | StopInfo.cpp | 832 EvaluateExpressionOptions expr_options; in PerformAction() local 833 expr_options.SetUnwindOnError(true); in PerformAction() 834 expr_options.SetIgnoreBreakpoints(true); in PerformAction() 838 exe_ctx, expr_options, wp_sp->GetConditionText(), in PerformAction()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/ |
| H A D | RenderScriptRuntime.cpp | 3292 DumpValueObjectOptions expr_options; in DumpAllocation() local 3293 expr_options.SetHideName(true); in DumpAllocation() 3314 expr_result->Dump(strm, expr_options); in DumpAllocation()
|