Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Commands/
DCommandObjectCommands.cpp397 auto alias_command = args[0].ref(); in DoExecute() local
398 if (alias_command.startswith("-")) { in DoExecute()
400 if (alias_command == "--help" || alias_command == "--long-help") { in DoExecute()
410 size_t pos = raw_command_string.find(alias_command); in DoExecute()
412 raw_command_string = raw_command_string.substr(alias_command.size()); in DoExecute()
423 if (m_interpreter.CommandExists(alias_command)) { in DoExecute()
451 return HandleAliasingRawCommand(alias_command, raw_command_string, in DoExecute()
457 bool HandleAliasingRawCommand(llvm::StringRef alias_command, in HandleAliasingRawCommand() argument
468 if (m_interpreter.AliasExists(alias_command) || in HandleAliasingRawCommand()
469 m_interpreter.UserCommandExists(alias_command)) { in HandleAliasingRawCommand()
[all …]