Searched refs:expr_options (Results 1 – 6 of 6) sorted by relevance
/external/llvm-project/lldb/examples/darwin/heap_find/ |
D | heap.py | 612 expr_options = lldb.SBExpressionOptions() 613 expr_options.SetIgnoreBreakpoints(True) 614 expr_options.SetTimeoutInMicroSeconds(5 * 1000 * 1000) # 5 second timeout 615 expr_options.SetTryAllThreads(True) 616 expr_options.SetLanguage(lldb.eLanguageTypeObjC_plus_plus) 617 expr_options.SetPrefix(expr_prefix) 618 expr_sbvalue = frame.EvaluateExpression(expr, expr_options) 663 expr_options = lldb.SBExpressionOptions() 664 expr_options.SetIgnoreBreakpoints(True) 665 expr_options.SetFetchDynamicValue(lldb.eNoDynamicValues) [all …]
|
/external/llvm-project/lldb/source/Expression/ |
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()
|
/external/llvm-project/lldb/source/Commands/ |
D | CommandObjectExpression.cpp | 554 EvaluateExpressionOptions expr_options; in GetExprOptions() local 555 expr_options.SetUnwindOnError(command_options.unwind_on_error); in GetExprOptions() 556 expr_options.SetIgnoreBreakpoints(command_options.ignore_breakpoints); in GetExprOptions() 557 expr_options.SetTryAllThreads(command_options.try_all_threads); in GetExprOptions() 560 expr_options.SetTimeout(std::chrono::microseconds(command_options.timeout)); in GetExprOptions() 562 expr_options.SetTimeout(llvm::None); in GetExprOptions() 564 return expr_options; in GetExprOptions()
|
/external/llvm-project/lldb/source/Plugins/Platform/POSIX/ |
D | PlatformPOSIX.cpp | 556 EvaluateExpressionOptions expr_options; in EvaluateLibdlExpression() local 557 expr_options.SetUnwindOnError(true); in EvaluateLibdlExpression() 558 expr_options.SetIgnoreBreakpoints(true); in EvaluateLibdlExpression() 559 expr_options.SetExecutionPolicy(eExecutionPolicyAlways); in EvaluateLibdlExpression() 560 expr_options.SetLanguage(eLanguageTypeC_plus_plus); in EvaluateLibdlExpression() 561 expr_options.SetTrapExceptions(false); // dlopen can't throw exceptions, so in EvaluateLibdlExpression() 563 expr_options.SetTimeout(process->GetUtilityExpressionTimeout()); in EvaluateLibdlExpression() 567 UserExpression::Evaluate(exe_ctx, expr_options, expr_cstr, expr_prefix, in EvaluateLibdlExpression()
|
/external/llvm-project/lldb/source/Target/ |
D | StopInfo.cpp | 795 EvaluateExpressionOptions expr_options; in PerformAction() local 796 expr_options.SetUnwindOnError(true); in PerformAction() 797 expr_options.SetIgnoreBreakpoints(true); in PerformAction() 801 exe_ctx, expr_options, wp_sp->GetConditionText(), in PerformAction()
|
/external/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/ |
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()
|