Home
last modified time | relevance | path

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

/external/llvm-project/lldb/test/API/python_api/interpreter/
DTestCommandInterpreterAPI.py42 self.assertTrue(ci.CommandExists("breakpoint"))
43 self.assertTrue(ci.CommandExists("target"))
44 self.assertTrue(ci.CommandExists("platform"))
56 self.assertFalse(ci.CommandExists(None))
/external/llvm-project/lldb/bindings/interface/
DSBCommandInterpreter.i106 CommandExists (const char *cmd);
/external/llvm-project/lldb/source/API/
DSBCommandInterpreter.cpp115 bool SBCommandInterpreter::CommandExists(const char *cmd) { in CommandExists() function in SBCommandInterpreter
116 LLDB_RECORD_METHOD(bool, SBCommandInterpreter, CommandExists, (const char *), in CommandExists()
119 return (((cmd != nullptr) && IsValid()) ? m_opaque_ptr->CommandExists(cmd) in CommandExists()
777 LLDB_REGISTER_METHOD(bool, SBCommandInterpreter, CommandExists, in RegisterMethods()
/external/llvm-project/lldb/include/lldb/API/
DSBCommandInterpreter.h48 bool CommandExists(const char *cmd);
/external/llvm-project/lldb/source/Commands/
DCommandObjectCommands.cpp423 if (m_interpreter.CommandExists(alias_command)) { in DoExecute()
513 if (m_interpreter.CommandExists(alias_command)) { in HandleAliasingNormalCommand()
653 if (m_interpreter.CommandExists(command_name)) { in DoExecute()
737 if (!m_interpreter.CommandExists(command_name)) { in DoExecute()
/external/llvm-project/lldb/include/lldb/Interpreter/
DCommandInterpreter.h274 bool CommandExists(llvm::StringRef cmd) const;
/external/llvm-project/lldb/source/Interpreter/
DCommandInterpreter.cpp1022 if (CommandExists(name)) { in AddUserCommand()
1121 bool CommandInterpreter::CommandExists(llvm::StringRef cmd) const { in CommandExists() function in CommandInterpreter