Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBCommandInterpreter.h93 bool CommandExists(const char *cmd);
/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBCommandInterpreter.cpp154 bool SBCommandInterpreter::CommandExists(const char *cmd) { in CommandExists() function in SBCommandInterpreter
155 return (((cmd != nullptr) && IsValid()) ? m_opaque_ptr->CommandExists(cmd) in CommandExists()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectCommands.cpp598 if (m_interpreter.CommandExists(alias_command)) { in DoExecute()
688 if (m_interpreter.CommandExists(alias_command)) { in HandleAliasingNormalCommand()
819 if (m_interpreter.CommandExists(command_name)) { in DoExecute()
892 if (!m_interpreter.CommandExists(command_name)) { in DoExecute()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DCommandInterpreter.h222 bool CommandExists(llvm::StringRef cmd) const;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/
H A DCommandInterpreter.cpp989 if (CommandExists(name)) { in AddUserCommand()
1088 bool CommandInterpreter::CommandExists(llvm::StringRef cmd) const { in CommandExists() function in CommandInterpreter