Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandInterpreter.h109 m_allow_repeats(handle_repeats) {} in CommandInterpreterRunOptions()
191 bool GetAllowRepeats() const { return DefaultToNo(m_allow_repeats); } in GetAllowRepeats()
194 m_allow_repeats = allow_repeats ? eLazyBoolYes : eLazyBoolNo; in SetAllowRepeats()
207 LazyBool m_allow_repeats = eLazyBoolCalculate; variable
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp3364 if (options->m_allow_repeats == eLazyBoolYes) in GetIOHandler()