Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/test/API/python_api/interpreter/
H A DTestCommandInterpreterAPI.py39 self.assertTrue(ci.CommandExists("breakpoint"))
40 self.assertTrue(ci.CommandExists("target"))
41 self.assertTrue(ci.CommandExists("platform"))
53 self.assertFalse(ci.CommandExists(None))
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBCommandInterpreter.i108 CommandExists (const char *cmd);
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBCommandInterpreter.h48 bool CommandExists(const char *cmd);
/llvm-project-15.0.7/lldb/source/API/
H A DSBCommandInterpreter.cpp113 bool SBCommandInterpreter::CommandExists(const char *cmd) { in CommandExists() function in SBCommandInterpreter
116 return (((cmd != nullptr) && IsValid()) ? m_opaque_ptr->CommandExists(cmd) in CommandExists()
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectCommands.cpp438 if (m_interpreter.CommandExists(alias_command)) { in DoExecute()
532 if (m_interpreter.CommandExists(alias_command)) { in HandleAliasingNormalCommand()
673 if (m_interpreter.CommandExists(command_name)) { in DoExecute()
754 if (!m_interpreter.CommandExists(command_name)) { in DoExecute()
/llvm-project-15.0.7/lldb/include/lldb/Interpreter/
H A DCommandInterpreter.h276 bool CommandExists(llvm::StringRef cmd) const;
/llvm-project-15.0.7/lldb/source/Interpreter/
H A DCommandInterpreter.cpp1135 if (CommandExists(name)) { in AddUserCommand()
1282 bool CommandInterpreter::CommandExists(llvm::StringRef cmd) const { in CommandExists() function in CommandInterpreter