Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
HDCommandInterpreter.h70 m_stop_on_crash(stop_on_crash), m_echo_commands(echo_commands), in CommandInterpreterRunOptions()
78 m_echo_commands(eLazyBoolCalculate), in CommandInterpreterRunOptions()
88 m_echo_commands = value; in SetSilent()
115 bool GetEchoCommands() const { return DefaultToYes(m_echo_commands); } in GetEchoCommands()
118 m_echo_commands = echo_commands ? eLazyBoolYes : eLazyBoolNo; in SetEchoCommands()
150 LazyBool m_echo_commands; variable
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/
HDCommandInterpreter.cpp2405 if (options.m_echo_commands == eLazyBoolCalculate) { in HandleCommandsFromFile()
2412 } else if (options.m_echo_commands == eLazyBoolYes) { in HandleCommandsFromFile()
2904 if (options->m_echo_commands != eLazyBoolNo) in GetIOHandler()