Home
last modified time | relevance | path

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

/llvm-project/lldb/test/API/python_api/interpreter/
H A DTestCommandInterpreterAPI.py41 self.assertTrue(ci.CommandExists("breakpoint"))
42 self.assertTrue(ci.CommandExists("target"))
43 self.assertTrue(ci.CommandExists("platform"))
55 self.assertFalse(ci.CommandExists(None))
/llvm-project/lldb/include/lldb/API/
H A DSBCommandInterpreter.h62 bool CommandExists(const char *cmd);
/llvm-project/lldb/test/API/commands/command/script/
H A DTestCommandScript.py25 self.assertFalse(interp.CommandExists("foobar"), "It is not a builtin.")
/llvm-project/lldb/source/API/
H A DSBCommandInterpreter.cpp119 bool SBCommandInterpreter::CommandExists(const char *cmd) { in CommandExists() function in SBCommandInterpreter
122 return (((cmd != nullptr) && IsValid()) ? m_opaque_ptr->CommandExists(cmd) in CommandExists()
/llvm-project/lldb/source/Commands/
H A DCommandObjectCommands.cpp424 if (m_interpreter.CommandExists(alias_command)) { in DoExecute()
518 if (m_interpreter.CommandExists(alias_command)) { in HandleAliasingNormalCommand()
647 if (m_interpreter.CommandExists(command_name)) { in DoExecute()
715 if (!m_interpreter.CommandExists(command_name)) { in DoExecute()
/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandInterpreter.h303 bool CommandExists(llvm::StringRef cmd) const;
/llvm-project/lldb/tools/lldb-dap/
H A DDAP.cpp575 bool term_is_command = interpreter.CommandExists(term.c_str()) || in SetTarget()
/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp1181 if (CommandExists(name)) { in AddUserCommand()
1341 bool CommandInterpreter::CommandExists(llvm::StringRef cmd) const { in AliasExists()
1305 bool CommandInterpreter::CommandExists(llvm::StringRef cmd) const { CommandExists() function in CommandInterpreter