Home
last modified time | relevance | path

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

/external/llvm-project/lldb/include/lldb/Interpreter/
DCommandInterpreter.h96 : m_stop_on_continue(stop_on_continue), m_stop_on_error(stop_on_error), in CommandInterpreterRunOptions()
103 m_stop_on_error(eLazyBoolCalculate), in CommandInterpreterRunOptions()
130 bool GetStopOnError() const { return DefaultToNo(m_stop_on_error); } in GetStopOnError()
133 m_stop_on_error = stop_on_error ? eLazyBoolYes : eLazyBoolNo; in SetStopOnError()
189 LazyBool m_stop_on_error; variable
/external/llvm-project/lldb/source/Commands/
DCommandObjectWatchpointCommand.cpp262 data_up->stop_on_error = m_options.m_stop_on_error; in SetWatchpointCommandCallback()
352 m_stop_on_error = in SetOptionValue()
377 m_stop_on_error = true; in OptionParsingStarting()
395 bool m_stop_on_error; member in CommandObjectWatchpointCommandAdd::CommandOptions
DCommandObjectBreakpointCommand.cpp268 cmd_data->stop_on_error = m_options.m_stop_on_error; in SetBreakpointCommandCallback()
314 m_stop_on_error = in SetOptionValue()
338 m_stop_on_error = true; in OptionParsingStarting()
356 bool m_stop_on_error; member in CommandObjectBreakpointCommandAdd::CommandOptions
DCommandObjectCommands.cpp79 : Options(), m_stop_on_error(true), m_silent_run(false), in CommandOptions()
91 error = m_stop_on_error.SetValueFromString(option_arg); in SetOptionValue()
110 m_stop_on_error.Clear(); in OptionParsingStarting()
121 OptionValueBoolean m_stop_on_error; member in CommandObjectCommandsSource::CommandOptions
140 if (m_options.m_stop_on_error.OptionWasSet() || in DoExecute()
150 if (m_options.m_stop_on_error.OptionWasSet()) in DoExecute()
151 options.SetStopOnError(m_options.m_stop_on_error.GetCurrentValue()); in DoExecute()
/external/llvm-project/lldb/source/Interpreter/
DCommandInterpreter.cpp2460 if (options.m_stop_on_error == eLazyBoolCalculate) { in HandleCommandsFromFile()
2467 } else if (options.m_stop_on_error == eLazyBoolYes) { in HandleCommandsFromFile()
3034 if (options->m_stop_on_error == eLazyBoolYes) in GetIOHandler()