Home
last modified time | relevance | path

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

123

/external/llvm-project/lldb/include/lldb/Interpreter/
DCommandInterpreter.h111 LazyBool value = silent ? eLazyBoolNo : eLazyBoolYes; in SetSilent()
127 m_stop_on_continue = stop_on_continue ? eLazyBoolYes : eLazyBoolNo; in SetStopOnContinue()
133 m_stop_on_error = stop_on_error ? eLazyBoolYes : eLazyBoolNo; in SetStopOnError()
139 m_stop_on_crash = stop_on_crash ? eLazyBoolYes : eLazyBoolNo; in SetStopOnCrash()
145 m_echo_commands = echo_commands ? eLazyBoolYes : eLazyBoolNo; in SetEchoCommands()
153 m_echo_comment_commands = echo_comments ? eLazyBoolYes : eLazyBoolNo; in SetEchoCommentCommands()
159 m_print_results = print_results ? eLazyBoolYes : eLazyBoolNo; in SetPrintResults()
165 m_print_errors = print_errors ? eLazyBoolYes : eLazyBoolNo; in SetPrintErrors()
171 m_add_to_history = add_to_history ? eLazyBoolYes : eLazyBoolNo; in SetAddToHistory()
179 m_auto_handle_events = auto_handle_events ? eLazyBoolYes : eLazyBoolNo; in SetAutoHandleEvents()
[all …]
/external/llvm-project/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 …]
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/
DGDBRemoteCommunicationClient.cpp150 return m_supports_qEcho == eLazyBoolYes; in GetEchoSupported()
157 return m_supports_QPassSignals == eLazyBoolYes; in GetQPassSignalsSupported()
164 return m_supports_augmented_libraries_svr4_read == eLazyBoolYes; in GetAugmentedLibrariesSVR4ReadSupported()
171 return m_supports_qXfer_libraries_svr4_read == eLazyBoolYes; in GetQXferLibrariesSVR4ReadSupported()
178 return m_supports_qXfer_libraries_read == eLazyBoolYes; in GetQXferLibrariesReadSupported()
185 return m_supports_qXfer_auxv_read == eLazyBoolYes; in GetQXferAuxvReadSupported()
192 return m_supports_qXfer_features_read == eLazyBoolYes; in GetQXferFeaturesReadSupported()
199 return m_supports_qXfer_memory_map_read == eLazyBoolYes; in GetQXferMemoryMapReadSupported()
225 m_supports_not_sending_acks = eLazyBoolYes; in QueryNoAckModeSupported()
241 m_supports_threads_in_stop_reply = eLazyBoolYes; in GetListThreadsInStopReplySupported()
[all …]
/external/llvm-project/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.h529 m_cached_plan_explains_stop = does_explain ? eLazyBoolYes : eLazyBoolNo; in CachePlanExplainsStop()
/external/llvm-project/lldb/source/Host/common/
DFile.cpp166 m_is_interactive = eLazyBoolYes; in CalculateInteractiveAndTerminal()
167 m_is_real_terminal = eLazyBoolYes; in CalculateInteractiveAndTerminal()
169 m_supports_colors = eLazyBoolYes; in CalculateInteractiveAndTerminal()
174 m_is_interactive = eLazyBoolYes; in CalculateInteractiveAndTerminal()
178 m_is_real_terminal = eLazyBoolYes; in CalculateInteractiveAndTerminal()
180 m_supports_colors = eLazyBoolYes; in CalculateInteractiveAndTerminal()
190 return m_is_interactive == eLazyBoolYes; in GetIsInteractive()
196 return m_is_real_terminal == eLazyBoolYes; in GetIsRealTerminal()
202 return m_supports_colors == eLazyBoolYes; in GetIsTerminalWithColors()
/external/llvm-project/lldb/source/Interpreter/
DCommandAlias.cpp172 return (m_is_dashdash_alias == eLazyBoolYes); in IsDashDashCommand()
184 m_is_dashdash_alias = eLazyBoolYes; in IsDashDashCommand()
193 (GetUnderlyingCommand()->IsDashDashCommand() ? eLazyBoolYes in IsDashDashCommand()
195 return (m_is_dashdash_alias == eLazyBoolYes); in IsDashDashCommand()
DCommandInterpreter.cpp1669 add_to_history = (lazy_add_to_history == eLazyBoolYes); in HandleCommand()
2456 } else if (options.m_stop_on_continue == eLazyBoolYes) { in HandleCommandsFromFile()
2467 } else if (options.m_stop_on_error == eLazyBoolYes) { in HandleCommandsFromFile()
2488 } else if (options.m_echo_commands == eLazyBoolYes) { in HandleCommandsFromFile()
2501 } else if (options.m_echo_comment_commands == eLazyBoolYes) { in HandleCommandsFromFile()
2512 } else if (options.m_print_results == eLazyBoolYes) { in HandleCommandsFromFile()
2523 } else if (options.m_print_errors == eLazyBoolYes) { in HandleCommandsFromFile()
3032 if (options->m_stop_on_continue == eLazyBoolYes) in GetIOHandler()
3034 if (options->m_stop_on_error == eLazyBoolYes) in GetIOHandler()
3036 if (options->m_stop_on_crash == eLazyBoolYes) in GetIOHandler()
/external/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/
DObjCLanguageRuntime.h73 return (m_is_kvo == eLazyBoolYes); in IsKVO()
85 return (m_is_cf == eLazyBoolYes); in IsCFType()
287 m_has_new_literals_and_indexing = eLazyBoolYes; in HasNewLiteralsAndIndexing()
292 return (m_has_new_literals_and_indexing == eLazyBoolYes); in HasNewLiteralsAndIndexing()
/external/llvm-project/lldb/include/lldb/Core/
DValueObjectSyntheticFilter.h97 return (UpdateValueIfNeeded(), m_provides_value == eLazyBoolYes); in DoesProvideSyntheticValue()
124 return eLazyBoolYes; in CanUpdateWithInvalidExecutionContext()
DValueObjectDynamicValue.h107 return eLazyBoolYes; in CanUpdateWithInvalidExecutionContext()
/external/llvm-project/lldb/source/Core/
DValueObjectSyntheticFilter.cpp120 (m_synth_filter_up->MightHaveChildren() ? eLazyBoolYes : eLazyBoolNo); in MightHaveChildren()
217 m_provides_value = eLazyBoolYes; in UpdateValue()
361 if (m_provides_value == eLazyBoolYes) in CanProvideValue()
/external/llvm-project/lldb/source/Symbol/
DCompactUnwindInfo.cpp236 if (m_indexes_computed == eLazyBoolYes && m_unwindinfo_data_computed) in IsValid()
241 return m_indexes_computed == eLazyBoolYes && m_unwindinfo_data_computed; in IsValid()
246 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.cpp508 case eLazyBoolYes: in Dump()
520 case eLazyBoolYes: in Dump()
532 case eLazyBoolYes: in Dump()
DArmUnwindInfo.cpp345 unwind_plan.SetSourcedFromCompiler(eLazyBoolYes); in GetUnwindPlan()
/external/llvm-project/lldb/source/Target/
DThreadPlan.cpp53 m_cached_plan_explains_stop = actual_value ? eLazyBoolYes : eLazyBoolNo; in PlanExplainsStop()
56 return m_cached_plan_explains_stop == eLazyBoolYes; in PlanExplainsStop()
DThreadPlanStepInRange.cpp58 case eLazyBoolYes: in SetupAvoidNoDebug()
74 case eLazyBoolYes: in SetupAvoidNoDebug()
DThreadPlanStepOverRange.cpp81 case eLazyBoolYes: in SetupAvoidNoDebug()
/external/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/
DCPPLanguageRuntime.cpp402 thread, range_of_curr_func, sc, eOnlyThisThread, eLazyBoolYes, in GetStepThroughTrampolinePlan()
403 eLazyBoolYes); in GetStepThroughTrampolinePlan()
/external/llvm-project/lldb/include/lldb/
Dlldb-private-enumerations.h115 enum LazyBool { eLazyBoolCalculate = -1, eLazyBoolNo = 0, eLazyBoolYes = 1 }; enumerator
/external/llvm-project/lldb/source/Plugins/Platform/MacOSX/
DPlatformDarwinKernel.cpp149 is_ios_debug_session = eLazyBoolYes; in CreateInstance()
258 if (m_ios_debug_session == eLazyBoolYes) in GetStatus()
348 if (m_ios_debug_session != eLazyBoolYes) { in CollectKextAndKernelDirectories()
361 if (m_ios_debug_session != eLazyBoolYes) { in CollectKextAndKernelDirectories()
/external/llvm-project/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
DDynamicLoaderMacOS.cpp490 using_shared_cache = eLazyBoolYes; in GetSharedCacheInformation()
495 private_shared_cache = eLazyBoolYes; in GetSharedCacheInformation()
/external/llvm-project/lldb/source/Commands/
DCommandObjectExpression.cpp151 auto_apply_fixits = tmp_value ? eLazyBoolYes : eLazyBoolNo; in SetOptionValue()
382 auto_apply_fixits = m_command_options.auto_apply_fixits == eLazyBoolYes; in GetEvalOptions()
/external/llvm-project/lldb/source/API/
DSBVariablesOptions.cpp45 m_include_recognized_arguments = b ? eLazyBoolYes : eLazyBoolNo; in SetIncludeRecognizedArguments()
/external/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
DAppleThreadPlanStepThroughObjCTrampoline.cpp255 case eLazyBoolYes: in AppleThreadPlanStepThroughDirectDispatch()

123