Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
DCommandInterpreter.h99 m_stop_on_crash(stop_on_crash), m_echo_commands(echo_commands), in CommandInterpreterRunOptions()
110 m_echo_commands = value; in SetSilent()
137 bool GetEchoCommands() const { return DefaultToYes(m_echo_commands); } in GetEchoCommands()
140 m_echo_commands = echo_commands ? eLazyBoolYes : eLazyBoolNo; in SetEchoCommands()
186 LazyBool m_echo_commands = eLazyBoolCalculate; variable
/freebsd-12-stable/contrib/llvm-project/lldb/source/Interpreter/
DCommandInterpreter.cpp2483 if (options.m_echo_commands == eLazyBoolCalculate) { in HandleCommandsFromFile()
2490 } else if (options.m_echo_commands == eLazyBoolYes) { in HandleCommandsFromFile()
3053 if (options->m_echo_commands != eLazyBoolNo) in GetIOHandler()