Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/examples/darwin/heap_find/
H A Dheap.py611 expr_options = lldb.SBExpressionOptions()
612 expr_options.SetIgnoreBreakpoints(True)
613 expr_options.SetTimeoutInMicroSeconds(5 * 1000 * 1000) # 5 second timeout
614 expr_options.SetTryAllThreads(True)
615 expr_options.SetLanguage(lldb.eLanguageTypeObjC_plus_plus)
616 expr_options.SetPrefix(expr_prefix)
617 expr_sbvalue = frame.EvaluateExpression(expr, expr_options)
662 expr_options = lldb.SBExpressionOptions()
663 expr_options.SetIgnoreBreakpoints(True)
664 expr_options.SetFetchDynamicValue(lldb.eNoDynamicValues)
[all …]
/openbsd-src/gnu/llvm/lldb/source/Expression/
H A DREPL.cpp317 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()
/openbsd-src/gnu/llvm/lldb/source/Commands/
H A DCommandObjectExpression.cpp540 EvaluateExpressionOptions expr_options; in GetExprOptions() local
541 expr_options.SetUnwindOnError(command_options.unwind_on_error); in GetExprOptions()
542 expr_options.SetIgnoreBreakpoints(command_options.ignore_breakpoints); in GetExprOptions()
543 expr_options.SetTryAllThreads(command_options.try_all_threads); in GetExprOptions()
546 expr_options.SetTimeout(std::chrono::microseconds(command_options.timeout)); in GetExprOptions()
548 expr_options.SetTimeout(std::nullopt); in GetExprOptions()
550 return expr_options; in GetExprOptions()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.cpp519 EvaluateExpressionOptions expr_options; in EvaluateLibdlExpression() local
520 expr_options.SetUnwindOnError(true); in EvaluateLibdlExpression()
521 expr_options.SetIgnoreBreakpoints(true); in EvaluateLibdlExpression()
522 expr_options.SetExecutionPolicy(eExecutionPolicyAlways); in EvaluateLibdlExpression()
523 expr_options.SetLanguage(eLanguageTypeC_plus_plus); in EvaluateLibdlExpression()
524 expr_options.SetTrapExceptions(false); // dlopen can't throw exceptions, so in EvaluateLibdlExpression()
526 expr_options.SetTimeout(process->GetUtilityExpressionTimeout()); in EvaluateLibdlExpression()
530 UserExpression::Evaluate(exe_ctx, expr_options, expr_cstr, expr_prefix, in EvaluateLibdlExpression()
/openbsd-src/gnu/llvm/lldb/source/Target/
H A DStopInfo.cpp933 EvaluateExpressionOptions expr_options; in PerformAction() local
934 expr_options.SetUnwindOnError(true); in PerformAction()
935 expr_options.SetIgnoreBreakpoints(true); in PerformAction()
939 exe_ctx, expr_options, wp_sp->GetConditionText(), in PerformAction()
/openbsd-src/gnu/llvm/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptRuntime.cpp3282 DumpValueObjectOptions expr_options; in DumpAllocation() local
3283 expr_options.SetHideName(true); in DumpAllocation()
3304 expr_result->Dump(strm, expr_options); in DumpAllocation()