Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectExpression.cpp298 m_option_group.Append(&m_command_options); in CommandObjectExpression()
312 options.SetLanguage(m_command_options.language); in HandleCompletion()
412 options.SetDebug(m_command_options.debug); in EvaluateExpression()
413 options.SetLanguage(m_command_options.language); in EvaluateExpression()
415 m_command_options.allow_jit in EvaluateExpression()
427 if (m_command_options.top_level) in EvaluateExpression()
432 if (!m_command_options.ignore_breakpoints || in EvaluateExpression()
433 !m_command_options.unwind_on_error) in EvaluateExpression()
436 if (m_command_options.timeout > 0) in EvaluateExpression()
474 m_command_options.m_verbosity, format)); in EvaluateExpression()
[all …]
H A DCommandObjectRegister.cpp58 m_command_options() { in CommandObjectRegisterRead()
78 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()
192 if (m_command_options.dump_all_sets) in DoExecute()
199 !m_command_options.dump_all_sets.GetCurrentValue()); in DoExecute()
203 if (m_command_options.dump_all_sets) { in DoExecute()
207 } else if (m_command_options.set_indexes.GetSize() > 0) { in DoExecute()
299 CommandOptions m_command_options; member in CommandObjectRegisterRead
H A DCommandObjectType.cpp612 CommandOptions m_command_options; member in CommandObjectTypeFormatAdd
621 m_command_options() { in CommandObjectTypeFormatAdd()
674 m_option_group.Append(&m_command_options); in CommandObjectTypeFormatAdd()
693 m_command_options.m_custom_type_name.empty()) { in DoExecute()
702 if (m_command_options.m_custom_type_name.empty()) in DoExecute()
705 .SetCascades(m_command_options.m_cascade) in DoExecute()
712 .SetCascades(m_command_options.m_cascade) in DoExecute()
734 if (m_command_options.m_regex) { in DoExecute()
2824 CommandOptions m_command_options; member in CommandObjectTypeLookup
2833 m_option_group(), m_command_options() { in CommandObjectTypeLookup()
[all …]
H A DCommandObjectCommands.cpp408 CommandOptions m_command_options; member in CommandObjectCommandsAlias
417 m_option_group(), m_command_options() { in CommandObjectCommandsAlias()
418 m_option_group.Append(&m_command_options); in CommandObjectCommandsAlias()
651 if (m_command_options.m_help.OptionWasSet()) in HandleAliasingRawCommand()
652 alias->SetHelp(m_command_options.m_help.GetCurrentValue()); in HandleAliasingRawCommand()
653 if (m_command_options.m_long_help.OptionWasSet()) in HandleAliasingRawCommand()
654 alias->SetHelpLong(m_command_options.m_long_help.GetCurrentValue()); in HandleAliasingRawCommand()
753 if (m_command_options.m_help.OptionWasSet()) in HandleAliasingNormalCommand()
754 alias->SetHelp(m_command_options.m_help.GetCurrentValue()); in HandleAliasingNormalCommand()
755 if (m_command_options.m_long_help.OptionWasSet()) in HandleAliasingNormalCommand()
[all …]
H A DCommandObjectExpression.h82 CommandOptions m_command_options; variable
/freebsd-12.1/contrib/llvm/tools/lldb/source/Expression/
H A DREPL.cpp31 m_command_options.OptionParsingStarting(&exe_ctx); in REPL()
34 m_command_options.unwind_on_error = false; in REPL()
35 m_command_options.ignore_breakpoints = false; in REPL()
36 m_command_options.debug = false; in REPL()
280 expr_options.SetUnwindOnError(m_command_options.unwind_on_error); in IOHandlerInputComplete()
281 expr_options.SetIgnoreBreakpoints(m_command_options.ignore_breakpoints); in IOHandlerInputComplete()
284 expr_options.SetTryAllThreads(m_command_options.try_all_threads); in IOHandlerInputComplete()
290 if (m_command_options.timeout > 0) in IOHandlerInputComplete()
291 expr_options.SetTimeout(std::chrono::microseconds(m_command_options.timeout)); in IOHandlerInputComplete()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Expression/
H A DREPL.h74 m_command_options = options; in SetCommandOptions()
149 CommandObjectExpression::CommandOptions m_command_options; variable