Home
last modified time | relevance | path

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

/freebsd-src/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectRegister.cpp60 m_option_group.Append(&m_command_options);
85 bool prefix_with_altname = (bool)m_command_options.alternate_name; in HandleArgumentCompletion()
158 const size_t set_array_size = m_command_options.set_indexes.GetSize(); in DumpRegisterSet()
162 m_command_options.set_indexes[i]->GetValueAs<uint64_t>().value_or(
180 if (m_command_options.dump_all_sets) in DoExecute()
187 !m_command_options.dump_all_sets.GetCurrentValue()); in DoExecute()
191 if (m_command_options.dump_all_sets) { in DoExecute()
194 } else if (m_command_options.set_indexes.GetSize() > 0) { in DoExecute()
285 CommandOptions m_command_options; in SetOptionValue()
299 CommandOptions m_command_options; global() member in CommandObjectRegisterRead
H A DCommandObjectExpression.cpp321 m_option_group.Append(&m_command_options); in CommandObjectExpression()
335 options.SetLanguage(m_command_options.language); in CommandObjectExpression()
415 if (m_command_options.top_level && !m_command_options.allow_jit) { in EvaluateExpression()
422 m_command_options.GetEvaluateExpressionOptions(target, m_varobj_options); in EvaluateExpression()
456 m_command_options.ShouldSuppressResult(m_varobj_options); in EvaluateExpression()
459 m_command_options.m_verbosity, format)); in EvaluateExpression()
628 REPLSP repl_sp(target.GetREPL(repl_error, m_command_options.language, in DoExecute()
633 repl_sp = target.GetREPL(repl_error, m_command_options.language, in DoExecute()
644 GetExprOptions(exe_ctx, m_command_options)); in DoExecute()
[all...]
H A DCommandObjectType.cpp583 CommandOptions m_command_options; member in CommandObjectTypeFormatAdd
636 m_option_group.Append(&m_command_options); in CommandObjectTypeFormatAdd()
654 m_command_options.m_custom_type_name.empty()) { in DoExecute()
662 if (m_command_options.m_custom_type_name.empty()) in DoExecute()
665 .SetCascades(m_command_options.m_cascade) in DoExecute()
666 .SetSkipPointers(m_command_options.m_skip_pointers) in DoExecute()
667 .SetSkipReferences(m_command_options.m_skip_references)); in DoExecute()
670 ConstString(m_command_options.m_custom_type_name.c_str()), in DoExecute()
672 .SetCascades(m_command_options.m_cascade) in DoExecute()
673 .SetSkipPointers(m_command_options in DoExecute()
2688 CommandOptions m_command_options; global() member in CommandObjectTypeLookup
[all...]
H A DCommandObjectCommands.cpp233 CommandOptions m_command_options; in SetOptionValue()
242 m_option_group.Append(&m_command_options); in OptionParsingStarting()
483 if (m_command_options.m_help.OptionWasSet()) in HandleAliasingRawCommand()
484 alias->SetHelp(m_command_options.m_help.GetCurrentValue()); in HandleAliasingRawCommand()
485 if (m_command_options.m_long_help.OptionWasSet()) in HandleAliasingRawCommand()
486 alias->SetHelpLong(m_command_options.m_long_help.GetCurrentValue()); in HandleAliasingRawCommand()
581 if (m_command_options.m_help.OptionWasSet()) in HandleAliasingNormalCommand()
582 alias->SetHelp(m_command_options.m_help.GetCurrentValue()); in HandleAliasingNormalCommand()
583 if (m_command_options.m_long_help.OptionWasSet()) in HandleAliasingNormalCommand()
584 alias->SetHelpLong(m_command_options in HandleAliasingNormalCommand()
252 CommandOptions m_command_options; global() member in CommandObjectCommandsAlias
[all...]
H A DCommandObjectExpression.h99 CommandOptions m_command_options; variable