Searched refs:expr_options (Results 1 – 6 of 6) sorted by relevance
| /llvm-project-15.0.7/lldb/examples/darwin/heap_find/ |
| H A D | heap.py | 612 expr_options = lldb.SBExpressionOptions() 613 expr_options.SetIgnoreBreakpoints(True) 615 expr_options.SetTryAllThreads(True) 617 expr_options.SetPrefix(expr_prefix) 664 expr_options.SetIgnoreBreakpoints(True) 666 expr_options.SetTimeoutInMicroSeconds( 668 expr_options.SetTryAllThreads(False) 671 expr_options.SetPrefix(expr_prefix) 1345 expr_options.SetIgnoreBreakpoints(True) 1346 expr_options.SetTimeoutInMicroSeconds( [all …]
|
| /llvm-project-15.0.7/lldb/source/Expression/ |
| H A D | REPL.cpp | 317 EvaluateExpressionOptions expr_options = m_expr_options; in IOHandlerInputComplete() local 318 expr_options.SetCoerceToId(m_varobj_options.use_objc); in IOHandlerInputComplete() 319 expr_options.SetKeepInMemory(true); in IOHandlerInputComplete() 320 expr_options.SetUseDynamic(m_varobj_options.use_dynamic); in IOHandlerInputComplete() 321 expr_options.SetGenerateDebugInfo(true); in IOHandlerInputComplete() 322 expr_options.SetREPLEnabled(true); in IOHandlerInputComplete() 323 expr_options.SetColorizeErrors(colorize_err); in IOHandlerInputComplete() 324 expr_options.SetPoundLine(m_repl_source_path.c_str(), in IOHandlerInputComplete() 327 expr_options.SetLanguage(GetLanguage()); in IOHandlerInputComplete() 340 UserExpression::Evaluate(exe_ctx, expr_options, code.c_str(), in IOHandlerInputComplete()
|
| /llvm-project-15.0.7/lldb/source/Commands/ |
| H A D | CommandObjectExpression.cpp | 533 EvaluateExpressionOptions expr_options; in GetExprOptions() local 534 expr_options.SetUnwindOnError(command_options.unwind_on_error); in GetExprOptions() 535 expr_options.SetIgnoreBreakpoints(command_options.ignore_breakpoints); in GetExprOptions() 536 expr_options.SetTryAllThreads(command_options.try_all_threads); in GetExprOptions() 539 expr_options.SetTimeout(std::chrono::microseconds(command_options.timeout)); in GetExprOptions() 541 expr_options.SetTimeout(llvm::None); in GetExprOptions() 543 return expr_options; in GetExprOptions()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Platform/POSIX/ |
| H A D | PlatformPOSIX.cpp | 518 EvaluateExpressionOptions expr_options; in EvaluateLibdlExpression() local 519 expr_options.SetUnwindOnError(true); in EvaluateLibdlExpression() 520 expr_options.SetIgnoreBreakpoints(true); in EvaluateLibdlExpression() 521 expr_options.SetExecutionPolicy(eExecutionPolicyAlways); in EvaluateLibdlExpression() 522 expr_options.SetLanguage(eLanguageTypeC_plus_plus); in EvaluateLibdlExpression() 523 expr_options.SetTrapExceptions(false); // dlopen can't throw exceptions, so in EvaluateLibdlExpression() 525 expr_options.SetTimeout(process->GetUtilityExpressionTimeout()); in EvaluateLibdlExpression() 529 UserExpression::Evaluate(exe_ctx, expr_options, expr_cstr, expr_prefix, in EvaluateLibdlExpression()
|
| /llvm-project-15.0.7/lldb/source/Target/ |
| H A D | StopInfo.cpp | 848 EvaluateExpressionOptions expr_options; in PerformAction() local 849 expr_options.SetUnwindOnError(true); in PerformAction() 850 expr_options.SetIgnoreBreakpoints(true); in PerformAction() 854 exe_ctx, expr_options, wp_sp->GetConditionText(), in PerformAction()
|
| /llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/ |
| H A D | RenderScriptRuntime.cpp | 3281 DumpValueObjectOptions expr_options; in DumpAllocation() local 3282 expr_options.SetHideName(true); in DumpAllocation() 3303 expr_result->Dump(strm, expr_options); in DumpAllocation()
|