Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/include/lldb/Interpreter/
H A DCommandInterpreter.h100 m_stop_on_crash(stop_on_crash), m_echo_commands(echo_commands), in CommandInterpreterRunOptions()
111 m_echo_commands = value; in SetSilent()
138 bool GetEchoCommands() const { return DefaultToYes(m_echo_commands); } in GetEchoCommands()
141 m_echo_commands = echo_commands ? eLazyBoolYes : eLazyBoolNo; in SetEchoCommands()
187 LazyBool m_echo_commands = eLazyBoolCalculate; variable
/openbsd-src/gnu/llvm/lldb/source/Interpreter/
H A DCommandInterpreter.cpp2730 if (options.m_echo_commands == eLazyBoolCalculate) { in HandleCommandsFromFile()
2737 } else if (options.m_echo_commands == eLazyBoolYes) { in HandleCommandsFromFile()
3324 if (options->m_echo_commands != eLazyBoolNo) in GetIOHandler()