Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
HDCommandInterpreter.h69 : m_stop_on_continue(stop_on_continue), m_stop_on_error(stop_on_error), in CommandInterpreterRunOptions()
75 : m_stop_on_continue(eLazyBoolCalculate), in CommandInterpreterRunOptions()
97 bool GetStopOnContinue() const { return DefaultToNo(m_stop_on_continue); } in GetStopOnContinue()
100 m_stop_on_continue = stop_on_continue ? eLazyBoolYes : eLazyBoolNo; in SetStopOnContinue()
147 LazyBool m_stop_on_continue; variable
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
HDCommandObjectCommands.cpp230 m_stop_on_continue(true) {} in CommandOptions()
245 error = m_stop_on_continue.SetValueFromString(option_arg); in SetOptionValue()
262 m_stop_on_continue.Clear(); in OptionParsingStarting()
273 OptionValueBoolean m_stop_on_continue; member in CommandObjectCommandsSource::CommandOptions
292 m_options.m_stop_on_continue.OptionWasSet()) { in DoExecute()
296 if (m_options.m_stop_on_continue.OptionWasSet()) in DoExecute()
298 m_options.m_stop_on_continue.GetCurrentValue()); in DoExecute()
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/
HDCommandInterpreter.cpp2372 if (options.m_stop_on_continue == eLazyBoolCalculate) { in HandleCommandsFromFile()
2380 } else if (options.m_stop_on_continue == eLazyBoolYes) { in HandleCommandsFromFile()
2898 if (options->m_stop_on_continue == eLazyBoolYes) in GetIOHandler()