Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectExpression.cpp260 m_option_group.Append(&m_command_options); in CommandObjectExpression()
274 options.SetLanguage(m_command_options.language); in HandleCompletion()
349 options.SetDebug(m_command_options.debug); in GetEvalOptions()
350 options.SetLanguage(m_command_options.language); in GetEvalOptions()
352 m_command_options.allow_jit in GetEvalOptions()
365 if (m_command_options.top_level) in GetEvalOptions()
370 if (!m_command_options.ignore_breakpoints || in GetEvalOptions()
371 !m_command_options.unwind_on_error) in GetEvalOptions()
374 if (m_command_options.timeout > 0) in GetEvalOptions()
395 if (m_command_options.top_level && !m_command_options.allow_jit) { in EvaluateExpression()
[all …]
H A DCommandObjectRegister.cpp67 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()
292 CommandOptions m_command_options; member in CommandObjectRegisterRead
H A DCommandObjectType.cpp567 CommandOptions m_command_options; member 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()
665 .SetSkipPointers(m_command_options.m_skip_pointers) in DoExecute()
672 ConstString(m_command_options.m_category), category_sp); in DoExecute()
685 if (m_command_options.m_regex) { in DoExecute()
2686 CommandOptions m_command_options; member in CommandObjectTypeLookup
[all …]
H A DCommandObjectCommands.cpp253 CommandOptions m_command_options; member in CommandObjectCommandsAlias
262 m_option_group.Append(&m_command_options); in CommandObjectCommandsAlias()
498 if (m_command_options.m_help.OptionWasSet()) in HandleAliasingRawCommand()
499 alias->SetHelp(m_command_options.m_help.GetCurrentValue()); in HandleAliasingRawCommand()
500 if (m_command_options.m_long_help.OptionWasSet()) in HandleAliasingRawCommand()
501 alias->SetHelpLong(m_command_options.m_long_help.GetCurrentValue()); in HandleAliasingRawCommand()
601 if (m_command_options.m_help.OptionWasSet()) in HandleAliasingNormalCommand()
602 alias->SetHelp(m_command_options.m_help.GetCurrentValue()); in HandleAliasingNormalCommand()
603 if (m_command_options.m_long_help.OptionWasSet()) in HandleAliasingNormalCommand()
604 alias->SetHelpLong(m_command_options.m_long_help.GetCurrentValue()); in HandleAliasingNormalCommand()
H A DCommandObjectExpression.h93 CommandOptions m_command_options; variable