Searched refs:CommandAlias (Results 1 – 7 of 7) sorted by relevance
/external/llvm-project/lldb/source/Interpreter/ |
D | CommandAlias.cpp | 77 CommandAlias::CommandAlias(CommandInterpreter &interpreter, in CommandAlias() function in CommandAlias 107 bool CommandAlias::WantsRawCommandString() { in WantsRawCommandString() 113 bool CommandAlias::WantsCompletion() { in WantsCompletion() 119 void CommandAlias::HandleCompletion(CompletionRequest &request) { in HandleCompletion() 124 void CommandAlias::HandleArgumentCompletion( in HandleArgumentCompletion() 131 Options *CommandAlias::GetOptions() { in GetOptions() 137 bool CommandAlias::Execute(const char *args_string, in Execute() 142 void CommandAlias::GetAliasExpansion(StreamString &help_string) const { in GetAliasExpansion() 170 bool CommandAlias::IsDashDashCommand() { in IsDashDashCommand() 198 bool CommandAlias::IsNestedAlias() { in IsNestedAlias() [all …]
|
D | CMakeLists.txt | 10 CommandAlias.cpp
|
D | CommandInterpreter.cpp | 283 CommandAlias *sif_alias = AddAlias( in Initialize() 383 CommandAlias *parray_alias = in Initialize() 392 CommandAlias *poarray_alias = AddAlias("poarray", cmd_obj_sp, in Initialize() 404 CommandAlias *shell_alias = AddAlias("shell", cmd_obj_sp, " --host --"); in Initialize() 1163 CommandAlias * 1171 std::unique_ptr<CommandAlias> command_alias_up( in AddAlias() 1172 new CommandAlias(*this, command_obj_sp, args_string, alias_name)); in AddAlias() 1428 ((CommandAlias *)alias_cmd_obj)->Desugar(); in BuildAliasResult() 1916 const CommandAlias * 1922 return (CommandAlias *)pos->second.get(); in GetAlias()
|
/external/llvm-project/lldb/include/lldb/Interpreter/ |
D | CommandAlias.h | 20 class CommandAlias : public CommandObject { 22 typedef std::unique_ptr<CommandAlias> UniquePointer; 24 CommandAlias(CommandInterpreter &interpreter, lldb::CommandObjectSP cmd_sp,
|
D | CommandInterpreter.h | 280 CommandAlias *AddAlias(llvm::StringRef alias_name, 295 const CommandAlias *GetAlias(llvm::StringRef alias_name) const;
|
/external/llvm-project/lldb/source/Commands/ |
D | CommandObjectHelp.cpp | 114 ((CommandAlias *)sub_cmd_obj)->GetUnderlyingCommand().get(); in DoExecute()
|
D | CommandObjectCommands.cpp | 474 if (CommandAlias *alias = m_interpreter.AddAlias( in HandleAliasingRawCommand() 575 if (CommandAlias *alias = m_interpreter.AddAlias( in HandleAliasingNormalCommand()
|