Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBCommandInterpreterRunOptions.cpp173 void SBCommandInterpreterRunOptions::SetAllowRepeats(bool allow_repeats) { in SetAllowRepeats() argument
174 LLDB_INSTRUMENT_VA(this, allow_repeats); in SetAllowRepeats()
176 m_opaque_up->SetAllowRepeats(allow_repeats); in SetAllowRepeats()
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandInterpreter.h193 void SetAllowRepeats(bool allow_repeats) { in SetAllowRepeats() argument
194 m_allow_repeats = allow_repeats ? eLazyBoolYes : eLazyBoolNo; in SetAllowRepeats()
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp3100 const bool allow_repeats = in IOHandlerInputComplete() local
3103 if (!is_interactive && !allow_repeats) { in IOHandlerInputComplete()