Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectWatchpointCommand.cpp222 data_up->stop_on_error = m_options.m_stop_on_error; in SetWatchpointCommandCallback()
309 m_stop_on_error = in SetOptionValue()
334 m_stop_on_error = true; in OptionParsingStarting()
352 bool m_stop_on_error; member in CommandObjectWatchpointCommandAdd::CommandOptions
H A DCommandObjectBreakpointCommand.cpp235 cmd_data->stop_on_error = m_options.m_stop_on_error; in SetBreakpointCommandCallback()
278 m_stop_on_error = in SetOptionValue()
302 m_stop_on_error = true; in OptionParsingStarting()
320 bool m_stop_on_error; member in CommandObjectBreakpointCommandAdd::CommandOptions
H A DCommandObjectCommands.cpp60 : m_stop_on_error(true), m_silent_run(false), m_stop_on_continue(true), in CommandOptions()
72 error = m_stop_on_error.SetValueFromString(option_arg); in SetOptionValue()
95 m_stop_on_error.Clear(); in OptionParsingStarting()
107 OptionValueBoolean m_stop_on_error; member in CommandObjectCommandsSource::CommandOptions
148 if (m_options.m_stop_on_error.OptionWasSet() || in DoExecute()
155 if (m_options.m_stop_on_error.OptionWasSet()) in DoExecute()
156 options.SetStopOnError(m_options.m_stop_on_error.GetCurrentValue()); in DoExecute()
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandInterpreter.h105 : m_stop_on_continue(stop_on_continue), m_stop_on_error(stop_on_error), in CommandInterpreterRunOptions()
133 bool GetStopOnError() const { return DefaultToNo(m_stop_on_error); } in GetStopOnError()
136 m_stop_on_error = stop_on_error ? eLazyBoolYes : eLazyBoolNo; in SetStopOnError()
198 LazyBool m_stop_on_error = eLazyBoolCalculate; variable
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp2726 if (options.m_stop_on_error == eLazyBoolCalculate) { in HandleCommandsFromFile()
2733 } else if (options.m_stop_on_error == eLazyBoolYes) { in HandleCommandsFromFile()
3352 if (options->m_stop_on_error == eLazyBoolYes) in GetIOHandler()