Home
last modified time | relevance | path

Searched refs:m_command_options (Results 1 – 5 of 5) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectRegister.cpp72 m_option_group.Append(&m_command_options);
99 bool prefix_with_altname = (bool)m_command_options.alternate_name; in DumpRegister()
172 const size_t set_array_size = m_command_options.set_indexes.GetSize(); in DoExecute()
176 m_command_options.set_indexes[i]->GetValueAs<uint64_t>().value_or( in DoExecute()
194 if (m_command_options.dump_all_sets) in DoExecute()
201 !m_command_options.dump_all_sets.GetCurrentValue()); in DoExecute()
205 if (m_command_options.dump_all_sets) { in DoExecute()
208 } else if (m_command_options.set_indexes.GetSize() > 0) { in DoExecute()
299 CommandOptions m_command_options; member in CommandObjectRegisterRead
H A DCommandObjectExpression.cpp333 m_option_group.Append(&m_command_options); in CommandObjectExpression()
347 options.SetLanguage(m_command_options.language); in HandleCompletion()
427 if (m_command_options.top_level && !m_command_options.allow_jit) { in EvaluateExpression()
434 m_command_options.GetEvaluateExpressionOptions(target, m_varobj_options); in EvaluateExpression()
468 m_command_options.ShouldSuppressResult(m_varobj_options); in EvaluateExpression()
471 m_command_options.m_verbosity, format)); in EvaluateExpression()
636 REPLSP repl_sp(target.GetREPL(repl_error, m_command_options.language, in DoExecute()
641 repl_sp = target.GetREPL(repl_error, m_command_options.language, in DoExecute()
652 GetExprOptions(exe_ctx, m_command_options)); in DoExecute()
663 Language::GetNameForLanguageType(m_command_options.language)); in DoExecute()
H A DCommandObjectType.cpp583 CommandOptions m_command_options; member in CommandObjectTypeFormatAdd
644 m_option_group.Append(&m_command_options); in CommandObjectTypeFormatAdd()
662 m_command_options.m_custom_type_name.empty()) { in DoExecute()
670 if (m_command_options.m_custom_type_name.empty()) in DoExecute()
673 .SetCascades(m_command_options.m_cascade) in DoExecute()
680 .SetCascades(m_command_options.m_cascade) in DoExecute()
681 .SetSkipPointers(m_command_options.m_skip_pointers) in DoExecute()
688 ConstString(m_command_options.m_category), category_sp); in DoExecute()
701 if (m_command_options.m_regex) { in DoExecute()
2688 CommandOptions m_command_options; member in CommandObjectTypeLookup
[all …]
H A DCommandObjectCommands.cpp252 CommandOptions m_command_options; member in CommandObjectCommandsAlias
261 m_option_group.Append(&m_command_options); in CommandObjectCommandsAlias()
502 if (m_command_options.m_help.OptionWasSet()) in HandleAliasingRawCommand()
503 alias->SetHelp(m_command_options.m_help.GetCurrentValue()); in HandleAliasingRawCommand()
504 if (m_command_options.m_long_help.OptionWasSet()) in HandleAliasingRawCommand()
505 alias->SetHelpLong(m_command_options.m_long_help.GetCurrentValue()); in HandleAliasingRawCommand()
600 if (m_command_options.m_help.OptionWasSet()) in HandleAliasingNormalCommand()
601 alias->SetHelp(m_command_options.m_help.GetCurrentValue()); in HandleAliasingNormalCommand()
602 if (m_command_options.m_long_help.OptionWasSet()) in HandleAliasingNormalCommand()
603 alias->SetHelpLong(m_command_options.m_long_help.GetCurrentValue()); in HandleAliasingNormalCommand()
H A DCommandObjectExpression.h99 CommandOptions m_command_options; variable