Searched refs:expr_options (Results 1 – 6 of 6) sorted by relevance
| /llvm-project/lldb/examples/darwin/heap_find/ |
| H A D | heap.py | 666 expr_options = lldb.SBExpressionOptions() 667 expr_options.SetIgnoreBreakpoints(True) 668 expr_options.SetTimeoutInMicroSeconds(5 * 1000 * 1000) # 5 second timeout 669 expr_options.SetTryAllThreads(True) 670 expr_options.SetLanguage(lldb.eLanguageTypeObjC_plus_plus) 671 expr_options.SetPrefix(expr_prefix) 672 expr_sbvalue = frame.EvaluateExpression(expr, expr_options) 722 expr_options = lldb.SBExpressionOptions() 723 expr_options.SetIgnoreBreakpoints(True) 724 expr_options.SetFetchDynamicValue(lldb.eNoDynamicValues) [all …]
|
| /llvm-project/lldb/source/Expression/ |
| H A D | REPL.cpp | 321 EvaluateExpressionOptions expr_options = m_expr_options; in IOHandlerInputComplete() local 322 expr_options.SetCoerceToId(m_varobj_options.use_objc); in IOHandlerInputComplete() 323 expr_options.SetKeepInMemory(true); in IOHandlerInputComplete() 324 expr_options.SetUseDynamic(m_varobj_options.use_dynamic); in IOHandlerInputComplete() 325 expr_options.SetGenerateDebugInfo(true); in IOHandlerInputComplete() 326 expr_options.SetREPLEnabled(true); in IOHandlerInputComplete() 327 expr_options.SetColorizeErrors(colorize_err); in IOHandlerInputComplete() 328 expr_options.SetPoundLine(m_repl_source_path.c_str(), in IOHandlerInputComplete() 331 expr_options.SetLanguage(GetLanguage()); in IOHandlerInputComplete() 343 exe_ctx, expr_options, cod in IOHandlerInputComplete() [all...] |
| /llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectExpression.cpp | 566 EvaluateExpressionOptions expr_options; 567 expr_options.SetUnwindOnError(command_options.unwind_on_error); in GetExprOptions() 568 expr_options.SetIgnoreBreakpoints(command_options.ignore_breakpoints); in GetExprOptions() 569 expr_options.SetTryAllThreads(command_options.try_all_threads); in GetExprOptions() 572 expr_options.SetTimeout(std::chrono::microseconds(command_options.timeout)); in GetExprOptions() 574 expr_options.SetTimeout(std::nullopt); in GetExprOptions() 576 return expr_options; in GetExprOptions() local
|
| /llvm-project/lldb/source/Plugins/Platform/POSIX/ |
| H A D | PlatformPOSIX.cpp | 530 EvaluateExpressionOptions expr_options; in EvaluateLibdlExpression() 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() 521 EvaluateExpressionOptions expr_options; EvaluateLibdlExpression() local
|
| /llvm-project/lldb/include/lldb/Expression/ |
| H A D | REPL.h | 121 const EvaluateExpressionOptions &expr_options, in OnExpressionEvaluated() argument
|
| /llvm-project/lldb/source/Target/ |
| H A D | StopInfo.cpp | 931 EvaluateExpressionOptions expr_options; in PerformAction() 932 expr_options.SetUnwindOnError(true); in PerformAction() 933 expr_options.SetIgnoreBreakpoints(true); in PerformAction() 936 exe_ctx, expr_options, wp_sp->GetConditionText(), in PerformAction() 914 EvaluateExpressionOptions expr_options; PerformAction() local
|