Home
last modified time | relevance | path

Searched refs:m_stop_on_continue (Results 1 – 3 of 3) sorted by relevance

/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()
127 bool GetStopOnContinue() const { return DefaultToNo(m_stop_on_continue); } in GetStopOnContinue()
130 m_stop_on_continue = stop_on_continue ? eLazyBoolYes : eLazyBoolNo; in SetStopOnContinue()
197 LazyBool m_stop_on_continue = eLazyBoolCalculate; variable
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectCommands.cpp60 : m_stop_on_error(true), m_silent_run(false), m_stop_on_continue(true), in CommandOptions()
76 error = m_stop_on_continue.SetValueFromString(option_arg); in SetOptionValue()
97 m_stop_on_continue.Clear(); in OptionParsingStarting()
109 OptionValueBoolean m_stop_on_continue; member in CommandObjectCommandsSource::CommandOptions
150 m_options.m_stop_on_continue.OptionWasSet()) { in DoExecute()
151 if (m_options.m_stop_on_continue.OptionWasSet()) in DoExecute()
153 m_options.m_stop_on_continue.GetCurrentValue()); in DoExecute()
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp2714 if (options.m_stop_on_continue == eLazyBoolCalculate) { in HandleCommandsFromFile()
2722 } else if (options.m_stop_on_continue == eLazyBoolYes) { in HandleCommandsFromFile()
3350 if (options->m_stop_on_continue == eLazyBoolYes) in GetIOHandler()