Home
last modified time | relevance | path

Searched refs:eLazyBoolYes (Results 1 – 25 of 64) sorted by relevance

123

/openbsd/src/gnu/llvm/lldb/source/DataFormatters/
DValueObjectPrinter.cpp165 ? eLazyBoolYes in ShouldPrintValueObject()
167 return m_should_print == eLazyBoolYes; in ShouldPrintValueObject()
172 m_is_nil = m_valobj->IsNilReference() ? eLazyBoolYes : eLazyBoolNo; in IsNil()
173 return m_is_nil == eLazyBoolYes; in IsNil()
179 m_valobj->IsUninitializedReference() ? eLazyBoolYes : eLazyBoolNo; in IsUninitialized()
180 return m_is_uninit == eLazyBoolYes; in IsUninitialized()
185 m_is_ptr = m_type_flags.Test(eTypeIsPointer) ? eLazyBoolYes : eLazyBoolNo; in IsPtr()
186 return m_is_ptr == eLazyBoolYes; in IsPtr()
191 m_is_ref = m_type_flags.Test(eTypeIsReference) ? eLazyBoolYes : eLazyBoolNo; in IsRef()
192 return m_is_ref == eLazyBoolYes; in IsRef()
[all …]
/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
DGDBRemoteCommunicationClient.cpp126 return m_supports_qEcho == eLazyBoolYes; in GetEchoSupported()
133 return m_supports_QPassSignals == eLazyBoolYes; in GetQPassSignalsSupported()
140 return m_supports_augmented_libraries_svr4_read == eLazyBoolYes; in GetAugmentedLibrariesSVR4ReadSupported()
147 return m_supports_qXfer_libraries_svr4_read == eLazyBoolYes; in GetQXferLibrariesSVR4ReadSupported()
154 return m_supports_qXfer_libraries_read == eLazyBoolYes; in GetQXferLibrariesReadSupported()
161 return m_supports_qXfer_auxv_read == eLazyBoolYes; in GetQXferAuxvReadSupported()
168 return m_supports_qXfer_features_read == eLazyBoolYes; in GetQXferFeaturesReadSupported()
175 return m_supports_qXfer_memory_map_read == eLazyBoolYes; in GetQXferMemoryMapReadSupported()
182 return m_supports_qXfer_siginfo_read == eLazyBoolYes; in GetQXferSigInfoReadSupported()
188 return m_supports_multiprocess == eLazyBoolYes; in GetMultiprocessSupported()
[all …]
/openbsd/src/gnu/llvm/lldb/include/lldb/Interpreter/
DCommandInterpreter.h107 LazyBool value = silent ? eLazyBoolNo : eLazyBoolYes; in SetSilent()
123 m_stop_on_continue = stop_on_continue ? eLazyBoolYes : eLazyBoolNo; in SetStopOnContinue()
129 m_stop_on_error = stop_on_error ? eLazyBoolYes : eLazyBoolNo; in SetStopOnError()
135 m_stop_on_crash = stop_on_crash ? eLazyBoolYes : eLazyBoolNo; in SetStopOnCrash()
141 m_echo_commands = echo_commands ? eLazyBoolYes : eLazyBoolNo; in SetEchoCommands()
149 m_echo_comment_commands = echo_comments ? eLazyBoolYes : eLazyBoolNo; in SetEchoCommentCommands()
155 m_print_results = print_results ? eLazyBoolYes : eLazyBoolNo; in SetPrintResults()
161 m_print_errors = print_errors ? eLazyBoolYes : eLazyBoolNo; in SetPrintErrors()
167 m_add_to_history = add_to_history ? eLazyBoolYes : eLazyBoolNo; in SetAddToHistory()
175 m_auto_handle_events = auto_handle_events ? eLazyBoolYes : eLazyBoolNo; in SetAutoHandleEvents()
[all …]
/openbsd/src/gnu/llvm/lldb/include/lldb/Target/
DStopInfo.h56 m_override_should_notify = override_value ? eLazyBoolYes : eLazyBoolNo; in OverrideShouldNotify()
64 return m_override_should_notify == eLazyBoolYes; in ShouldNotify()
90 m_override_should_stop = override_value ? eLazyBoolYes : eLazyBoolNo; in OverrideShouldStop()
98 return m_override_should_stop == eLazyBoolYes; in GetOverriddenShouldStopValue()
DThreadPlan.h540 m_cached_plan_explains_stop = does_explain ? eLazyBoolYes : eLazyBoolNo; in CachePlanExplainsStop()
/openbsd/src/gnu/llvm/lldb/source/Interpreter/
DCommandAlias.cpp173 return (m_is_dashdash_alias == eLazyBoolYes); in IsDashDashCommand()
185 m_is_dashdash_alias = eLazyBoolYes; in IsDashDashCommand()
194 (GetUnderlyingCommand()->IsDashDashCommand() ? eLazyBoolYes in IsDashDashCommand()
196 return (m_is_dashdash_alias == eLazyBoolYes); in IsDashDashCommand()
DCommandInterpreter.cpp1896 add_to_history = (lazy_add_to_history == eLazyBoolYes); in HandleCommand()
2705 } else if (options.m_stop_on_continue == eLazyBoolYes) { in HandleCommandsFromFile()
2716 } else if (options.m_stop_on_error == eLazyBoolYes) { in HandleCommandsFromFile()
2737 } else if (options.m_echo_commands == eLazyBoolYes) { in HandleCommandsFromFile()
2750 } else if (options.m_echo_comment_commands == eLazyBoolYes) { in HandleCommandsFromFile()
2761 } else if (options.m_print_results == eLazyBoolYes) { in HandleCommandsFromFile()
2772 } else if (options.m_print_errors == eLazyBoolYes) { in HandleCommandsFromFile()
3318 if (options->m_stop_on_continue == eLazyBoolYes) in GetIOHandler()
3320 if (options->m_stop_on_error == eLazyBoolYes) in GetIOHandler()
3322 if (options->m_stop_on_crash == eLazyBoolYes) in GetIOHandler()
/openbsd/src/gnu/llvm/lldb/source/Host/common/
DFile.cpp171 m_is_interactive = eLazyBoolYes; in CalculateInteractiveAndTerminal()
172 m_is_real_terminal = eLazyBoolYes; in CalculateInteractiveAndTerminal()
174 m_supports_colors = eLazyBoolYes; in CalculateInteractiveAndTerminal()
179 m_is_interactive = eLazyBoolYes; in CalculateInteractiveAndTerminal()
183 m_is_real_terminal = eLazyBoolYes; in CalculateInteractiveAndTerminal()
185 m_supports_colors = eLazyBoolYes; in CalculateInteractiveAndTerminal()
195 return m_is_interactive == eLazyBoolYes; in GetIsInteractive()
201 return m_is_real_terminal == eLazyBoolYes; in GetIsRealTerminal()
207 return m_supports_colors == eLazyBoolYes; in GetIsTerminalWithColors()
/openbsd/src/gnu/llvm/lldb/source/Plugins/LanguageRuntime/ObjC/
DObjCLanguageRuntime.h73 return (m_is_kvo == eLazyBoolYes); in IsKVO()
85 return (m_is_cf == eLazyBoolYes); in IsCFType()
305 m_has_new_literals_and_indexing = eLazyBoolYes; in HasNewLiteralsAndIndexing()
310 return (m_has_new_literals_and_indexing == eLazyBoolYes); in HasNewLiteralsAndIndexing()
/openbsd/src/gnu/llvm/lldb/include/lldb/Core/
DValueObjectSyntheticFilter.h98 return (UpdateValueIfNeeded(), m_provides_value == eLazyBoolYes); in DoesProvideSyntheticValue()
125 return eLazyBoolYes; in CanUpdateWithInvalidExecutionContext()
DValueObjectDynamicValue.h100 return eLazyBoolYes; in CanUpdateWithInvalidExecutionContext()
/openbsd/src/gnu/llvm/lldb/source/Core/
DValueObjectSyntheticFilter.cpp121 (m_synth_filter_up->MightHaveChildren() ? eLazyBoolYes : eLazyBoolNo); in MightHaveChildren()
218 m_provides_value = eLazyBoolYes; in UpdateValue()
362 if (m_provides_value == eLazyBoolYes) in CanProvideValue()
/openbsd/src/gnu/llvm/lldb/source/Symbol/
DCompactUnwindInfo.cpp237 if (m_indexes_computed == eLazyBoolYes && m_unwindinfo_data_computed) in IsValid()
242 return m_indexes_computed == eLazyBoolYes && m_unwindinfo_data_computed; in IsValid()
247 if (m_indexes_computed == eLazyBoolYes && m_unwindinfo_data_computed) in ScanIndex()
376 m_indexes_computed = eLazyBoolYes; in ScanIndex()
739 unwind_plan.SetSourcedFromCompiler(eLazyBoolYes); in CreateUnwindPlan_x86_64()
1011 unwind_plan.SetSourcedFromCompiler(eLazyBoolYes); in CreateUnwindPlan_i386()
1308 unwind_plan.SetSourcedFromCompiler(eLazyBoolYes); in CreateUnwindPlan_arm64()
1442 unwind_plan.SetSourcedFromCompiler(eLazyBoolYes); in CreateUnwindPlan_armv7()
DUnwindPlan.cpp513 case eLazyBoolYes: in Dump()
525 case eLazyBoolYes: in Dump()
537 case eLazyBoolYes: in Dump()
/openbsd/src/gnu/llvm/lldb/source/Plugins/Platform/Linux/
DPlatformLinux.cpp281 unwind_plan_sp->SetSourcedFromCompiler(eLazyBoolYes); in GetAArch64TrapHanlderUnwindPlan()
283 unwind_plan_sp->SetUnwindPlanValidAtAllInstructions(eLazyBoolYes); in GetAArch64TrapHanlderUnwindPlan()
284 unwind_plan_sp->SetUnwindPlanForSignalTrap(eLazyBoolYes); in GetAArch64TrapHanlderUnwindPlan()
/openbsd/src/gnu/llvm/lldb/source/Plugins/LanguageRuntime/CPlusPlus/
DCPPLanguageRuntime.cpp404 eLazyBoolYes, eLazyBoolYes); in GetStepThroughTrampolinePlan()
/openbsd/src/gnu/llvm/lldb/source/Commands/
DCommandOptionsProcessLaunch.cpp106 disable_aslr = disable_aslr_arg ? eLazyBoolYes : eLazyBoolNo; in SetOptionValue()
DCommandObjectExpression.cpp140 auto_apply_fixits = tmp_value ? eLazyBoolYes : eLazyBoolNo; in SetOptionValue()
365 auto_apply_fixits = m_command_options.auto_apply_fixits == eLazyBoolYes; in GetEvalOptions()
/openbsd/src/gnu/llvm/lldb/source/Target/
DThreadPlanStepInRange.cpp59 case eLazyBoolYes: in SetupAvoidNoDebug()
75 case eLazyBoolYes: in SetupAvoidNoDebug()
DTarget.cpp344 move_to_nearest_code = GetMoveToNearestCode() ? eLazyBoolYes : eLazyBoolNo; in CreateSourceRegexBreakpoint()
376 check_inlines = eLazyBoolYes; in CreateBreakpoint()
380 check_inlines = eLazyBoolYes; in CreateBreakpoint()
395 skip_prologue = GetSkipPrologue() ? eLazyBoolYes : eLazyBoolNo; in CreateBreakpoint()
397 move_to_nearest_code = GetMoveToNearestCode() ? eLazyBoolYes : eLazyBoolNo; in CreateBreakpoint()
462 skip_prologue = GetSkipPrologue() ? eLazyBoolYes : eLazyBoolNo; in CreateBreakpoint()
488 skip_prologue = GetSkipPrologue() ? eLazyBoolYes : eLazyBoolNo; in CreateBreakpoint()
514 skip_prologue = GetSkipPrologue() ? eLazyBoolYes : eLazyBoolNo; in CreateBreakpoint()
3487 if (elem.second.pass == eLazyBoolYes) in UpdateSignalFromDummy()
3492 if (elem.second.notify == eLazyBoolYes) in UpdateSignalFromDummy()
[all …]
/openbsd/src/gnu/llvm/lldb/include/lldb/
Dlldb-private-enumerations.h115 enum LazyBool { eLazyBoolCalculate = -1, eLazyBoolNo = 0, eLazyBoolYes = 1 }; enumerator
/openbsd/src/gnu/llvm/lldb/source/Plugins/Platform/MacOSX/
DPlatformDarwinKernel.cpp154 is_ios_debug_session = eLazyBoolYes; in CreateInstance()
253 if (m_ios_debug_session == eLazyBoolYes) in GetStatus()
343 if (m_ios_debug_session != eLazyBoolYes) { in CollectKextAndKernelDirectories()
356 if (m_ios_debug_session != eLazyBoolYes) { in CollectKextAndKernelDirectories()
/openbsd/src/gnu/llvm/lldb/source/API/
DSBVariablesOptions.cpp43 m_include_recognized_arguments = b ? eLazyBoolYes : eLazyBoolNo; in SetIncludeRecognizedArguments()
/openbsd/src/gnu/llvm/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
DDynamicLoaderMacOS.cpp579 using_shared_cache = eLazyBoolYes; in GetSharedCacheInformation()
584 private_shared_cache = eLazyBoolYes; in GetSharedCacheInformation()
/openbsd/src/gnu/llvm/lldb/include/lldb/Host/
DFile.h456 return NativeFile::IsValid() && m_is_interactive == eLazyBoolYes; in IsValid()

123