Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectExpression.cpp276 m_option_group.Append(&m_command_options); in CommandObjectExpression()
290 options.SetLanguage(m_command_options.language); in HandleCompletion()
365 options.SetDebug(m_command_options.debug); in GetEvalOptions()
366 options.SetLanguage(m_command_options.language); in GetEvalOptions()
368 m_command_options.allow_jit in GetEvalOptions()
381 if (m_command_options.top_level) in GetEvalOptions()
386 if (!m_command_options.ignore_breakpoints || in GetEvalOptions()
387 !m_command_options.unwind_on_error) in GetEvalOptions()
390 if (m_command_options.timeout > 0) in GetEvalOptions()
411 if (m_command_options.top_level && !m_command_options.allow_jit) { in EvaluateExpression()
[all …]
H A DCommandObjectRegister.cpp47 m_command_options() { in CommandObjectRegisterRead()
67 m_option_group.Append(&m_command_options); in CommandObjectRegisterRead()
94 bool prefix_with_altname = (bool)m_command_options.alternate_name; in DumpRegister()
169 const size_t set_array_size = m_command_options.set_indexes.GetSize(); in DoExecute()
172 set_idx = m_command_options.set_indexes[i]->GetUInt64Value(UINT32_MAX, in DoExecute()
190 if (m_command_options.dump_all_sets) in DoExecute()
197 !m_command_options.dump_all_sets.GetCurrentValue()); in DoExecute()
201 if (m_command_options.dump_all_sets) { in DoExecute()
204 } else if (m_command_options.set_indexes.GetSize() > 0) { in DoExecute()
293 CommandOptions m_command_options; member in CommandObjectRegisterRead
H A DCommandObjectCommands.cpp225 CommandOptions m_command_options; member in CommandObjectCommandsAlias
234 m_option_group(), m_command_options() { in CommandObjectCommandsAlias()
235 m_option_group.Append(&m_command_options); in CommandObjectCommandsAlias()
462 if (m_command_options.m_help.OptionWasSet()) in HandleAliasingRawCommand()
463 alias->SetHelp(m_command_options.m_help.GetCurrentValue()); in HandleAliasingRawCommand()
464 if (m_command_options.m_long_help.OptionWasSet()) in HandleAliasingRawCommand()
465 alias->SetHelpLong(m_command_options.m_long_help.GetCurrentValue()); in HandleAliasingRawCommand()
557 if (m_command_options.m_help.OptionWasSet()) in HandleAliasingNormalCommand()
558 alias->SetHelp(m_command_options.m_help.GetCurrentValue()); in HandleAliasingNormalCommand()
559 if (m_command_options.m_long_help.OptionWasSet()) in HandleAliasingNormalCommand()
[all …]
H A DCommandObjectType.cpp566 CommandOptions m_command_options; member in CommandObjectTypeFormatAdd
575 m_command_options() { in CommandObjectTypeFormatAdd()
628 m_option_group.Append(&m_command_options); in CommandObjectTypeFormatAdd()
646 m_command_options.m_custom_type_name.empty()) { in DoExecute()
654 if (m_command_options.m_custom_type_name.empty()) in DoExecute()
657 .SetCascades(m_command_options.m_cascade) in DoExecute()
664 .SetCascades(m_command_options.m_cascade) in DoExecute()
685 if (m_command_options.m_regex) { in DoExecute()
2711 CommandOptions m_command_options; member in CommandObjectTypeLookup
2720 m_option_group(), m_command_options() { in CommandObjectTypeLookup()
[all …]
H A DCommandObjectExpression.h93 CommandOptions m_command_options; variable