Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Expression/
H A DREPL.cpp278 EvaluateExpressionOptions expr_options; in IOHandlerInputComplete() local
279 expr_options.SetCoerceToId(m_varobj_options.use_objc); in IOHandlerInputComplete()
280 expr_options.SetUnwindOnError(m_command_options.unwind_on_error); in IOHandlerInputComplete()
282 expr_options.SetKeepInMemory(true); in IOHandlerInputComplete()
283 expr_options.SetUseDynamic(m_varobj_options.use_dynamic); in IOHandlerInputComplete()
285 expr_options.SetGenerateDebugInfo(true); in IOHandlerInputComplete()
286 expr_options.SetREPLEnabled(true); in IOHandlerInputComplete()
287 expr_options.SetColorizeErrors(colorize_err); in IOHandlerInputComplete()
288 expr_options.SetPoundLine(m_repl_source_path.c_str(), in IOHandlerInputComplete()
293 expr_options.SetTimeout(llvm::None); in IOHandlerInputComplete()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.cpp913 EvaluateExpressionOptions expr_options; in EvaluateLibdlExpression() local
914 expr_options.SetUnwindOnError(true); in EvaluateLibdlExpression()
915 expr_options.SetIgnoreBreakpoints(true); in EvaluateLibdlExpression()
916 expr_options.SetExecutionPolicy(eExecutionPolicyAlways); in EvaluateLibdlExpression()
917 expr_options.SetLanguage(eLanguageTypeC_plus_plus); in EvaluateLibdlExpression()
918 expr_options.SetTrapExceptions(false); // dlopen can't throw exceptions, so in EvaluateLibdlExpression()
920 expr_options.SetTimeout(std::chrono::seconds(2)); in EvaluateLibdlExpression()
924 UserExpression::Evaluate(exe_ctx, expr_options, expr_cstr, expr_prefix, in EvaluateLibdlExpression()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DStopInfo.cpp804 EvaluateExpressionOptions expr_options; in PerformAction() local
805 expr_options.SetUnwindOnError(true); in PerformAction()
806 expr_options.SetIgnoreBreakpoints(true); in PerformAction()
810 exe_ctx, expr_options, wp_sp->GetConditionText(), in PerformAction()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptRuntime.cpp3389 DumpValueObjectOptions expr_options; in DumpAllocation() local
3390 expr_options.SetHideName(true); in DumpAllocation()
3412 expr_result->Dump(strm, expr_options); in DumpAllocation()