Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandInterpreter.h108 m_print_errors(print_errors), m_add_to_history(add_to_history), in CommandInterpreterRunOptions()
120 m_add_to_history = value; in SetSilent()
171 bool GetAddToHistory() const { return DefaultToYes(m_add_to_history); } in GetAddToHistory()
174 m_add_to_history = add_to_history ? eLazyBoolYes : eLazyBoolNo; in SetAddToHistory()
204 LazyBool m_add_to_history = eLazyBoolCalculate; variable
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp2583 bool success = HandleCommand(cmd, options.m_add_to_history, tmp_result); in HandleCommands()