Home
last modified time | relevance | path

Searched refs:m_stop_on_crash (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandInterpreter.h106 m_stop_on_crash(stop_on_crash), m_echo_commands(echo_commands), in CommandInterpreterRunOptions()
139 bool GetStopOnCrash() const { return DefaultToNo(m_stop_on_crash); } in GetStopOnCrash()
142 m_stop_on_crash = stop_on_crash ? eLazyBoolYes : eLazyBoolNo; in SetStopOnCrash()
199 LazyBool m_stop_on_crash = eLazyBoolCalculate; variable
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp3354 if (options->m_stop_on_crash == eLazyBoolYes) in GetIOHandler()