Home
last modified time | relevance | path

Searched refs:GetEchoCommands (Results 1 – 7 of 7) sorted by relevance

/llvm-project-15.0.7/lldb/test/API/python_api/interpreter/
H A DTestRunCommandInterpreterAPI.py86 self.assertEqual(opts.GetEchoCommands(), True)
95 opts.SetEchoCommands(not opts.GetEchoCommands())
104 self.assertEqual(opts.GetEchoCommands(), False)
/llvm-project-15.0.7/lldb/source/API/
H A DSBCommandInterpreterRunOptions.cpp82 bool SBCommandInterpreterRunOptions::GetEchoCommands() const { in GetEchoCommands() function in SBCommandInterpreterRunOptions
85 return m_opaque_up->GetEchoCommands(); in GetEchoCommands()
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBCommandInterpreterRunOptions.i51 GetEchoCommands () const;
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBCommandInterpreterRunOptions.h47 bool GetEchoCommands() const;
/llvm-project-15.0.7/lldb/include/lldb/Interpreter/
H A DCommandInterpreter.h137 bool GetEchoCommands() const { return DefaultToYes(m_echo_commands); } in GetEchoCommands() function
557 bool GetEchoCommands() const;
/llvm-project-15.0.7/lldb/source/Interpreter/
H A DCommandInterpreter.cpp179 bool CommandInterpreter::GetEchoCommands() const { in GetEchoCommands() function in CommandInterpreter
2501 if (options.GetEchoCommands()) { in HandleCommands()
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectCommands.cpp183 options.SetEchoCommands(m_interpreter.GetEchoCommands()); in DoExecute()