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

/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandInterpreter.h69 : m_stop_on_continue(stop_on_continue), m_stop_on_error(stop_on_error),
76 m_stop_on_error(eLazyBoolCalculate),
103 bool GetStopOnError() const { return DefaultToNo(m_stop_on_error); }
106 m_stop_on_error = stop_on_error ? eLazyBoolYes : eLazyBoolNo;
148 LazyBool m_stop_on_error; member in class:lldb_private::CommandInterpreterRunOptions
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectWatchpointCommand.cpp262 data_up->stop_on_error = m_options.m_stop_on_error;
352 m_stop_on_error =
377 m_stop_on_error = true;
395 bool m_stop_on_error; member in class:CommandObjectWatchpointCommandAdd::CommandOptions
H A DCommandObjectBreakpointCommand.cpp271 cmd_data->stop_on_error = m_options.m_stop_on_error;
317 m_stop_on_error =
341 m_stop_on_error = true;
359 bool m_stop_on_error; member in class:CommandObjectBreakpointCommandAdd::CommandOptions
H A DCommandObjectCommands.cpp229 : Options(), m_stop_on_error(true), m_silent_run(false),
241 error = m_stop_on_error.SetValueFromString(option_arg);
260 m_stop_on_error.Clear();
271 OptionValueBoolean m_stop_on_error; member in class:CommandObjectCommandsSource::CommandOptions
290 if (m_options.m_stop_on_error.OptionWasSet() ||
300 if (m_options.m_stop_on_error.OptionWasSet())
301 options.SetStopOnError(m_options.m_stop_on_error.GetCurrentValue());
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp2384 if (options.m_stop_on_error == eLazyBoolCalculate) {
2391 } else if (options.m_stop_on_error == eLazyBoolYes) {
2900 if (options->m_stop_on_error == eLazyBoolYes)

Completed in 173 milliseconds