Searched refs:cmd_obj_sp (Results 1 – 3 of 3) sorted by relevance
/external/lldb/source/Interpreter/ |
D | CommandInterpreter.cpp | 153 CommandObjectSP cmd_obj_sp = GetCommandSPExact ("quit", false); in Initialize() local 154 if (cmd_obj_sp) in Initialize() 156 AddAlias ("q", cmd_obj_sp); in Initialize() 157 AddAlias ("exit", cmd_obj_sp); in Initialize() 160 cmd_obj_sp = GetCommandSPExact ("_regexp-attach",false); in Initialize() 161 if (cmd_obj_sp) in Initialize() 163 AddAlias ("attach", cmd_obj_sp); in Initialize() 166 cmd_obj_sp = GetCommandSPExact ("process detach",false); in Initialize() 167 if (cmd_obj_sp) in Initialize() 169 AddAlias ("detach", cmd_obj_sp); in Initialize() [all …]
|
/external/lldb/source/Commands/ |
D | CommandObjectCommands.cpp | 613 … CommandObjectSP cmd_obj_sp = m_interpreter.GetCommandSPExact (cmd_obj.GetCommandName(), false); in HandleAliasingRawCommand() local 615 …if (!m_interpreter.ProcessAliasOptionsArgs (cmd_obj_sp, raw_command_string.c_str(), option_arg_vec… in HandleAliasingRawCommand() 636 if (cmd_obj_sp) in HandleAliasingRawCommand() 638 m_interpreter.AddAlias (alias_command.c_str(), cmd_obj_sp); in HandleAliasingRawCommand()
|
/external/lldb/include/lldb/Interpreter/ |
D | CommandInterpreter.h | 136 ProcessAliasOptionsArgs (lldb::CommandObjectSP &cmd_obj_sp,
|