Searched refs:cmd_obj_sp (Results 1 – 6 of 6) sorted by relevance
/external/llvm-project/lldb/source/Interpreter/ |
D | CommandInterpreter.cpp | 238 CommandObjectSP cmd_obj_sp = GetCommandSPExact("quit", false); in Initialize() local 239 if (cmd_obj_sp) { in Initialize() 240 AddAlias("q", cmd_obj_sp); in Initialize() 241 AddAlias("exit", cmd_obj_sp); in Initialize() 244 cmd_obj_sp = GetCommandSPExact("_regexp-attach", false); in Initialize() 245 if (cmd_obj_sp) in Initialize() 246 AddAlias("attach", cmd_obj_sp)->SetSyntax(cmd_obj_sp->GetSyntax()); in Initialize() 248 cmd_obj_sp = GetCommandSPExact("process detach", false); in Initialize() 249 if (cmd_obj_sp) { in Initialize() 250 AddAlias("detach", cmd_obj_sp); in Initialize() [all …]
|
D | CommandAlias.cpp | 22 static bool ProcessAliasOptionsArgs(lldb::CommandObjectSP &cmd_obj_sp, in ProcessAliasOptionsArgs() argument 37 Options *options = cmd_obj_sp->GetOptions(); in ProcessAliasOptionsArgs() 42 cmd_obj_sp->GetCommandInterpreter().GetExecutionContext(); in ProcessAliasOptionsArgs() 63 if (cmd_obj_sp->WantsRawCommandString()) in ProcessAliasOptionsArgs()
|
/external/llvm-project/lldb/source/Commands/ |
D | CommandObjectCommands.cpp | 466 if (CommandObjectSP cmd_obj_sp = in HandleAliasingRawCommand() local 475 alias_command, cmd_obj_sp, raw_command_string)) { in HandleAliasingRawCommand() 1139 StructuredData::GenericSP cmd_obj_sp, in CommandObjectScriptingObject() argument 1141 : CommandObjectRaw(interpreter, name), m_cmd_obj_sp(cmd_obj_sp), in CommandObjectScriptingObject() 1148 GetFlags().Set(scripter->GetFlagsForCommandObject(cmd_obj_sp)); in CommandObjectScriptingObject() 1556 auto cmd_obj_sp = interpreter->CreateScriptCommandObject( in DoExecute() local 1558 if (!cmd_obj_sp) { in DoExecute() 1565 m_interpreter, m_cmd_name, cmd_obj_sp, m_synchronicity)); in DoExecute()
|
/external/llvm-project/lldb/include/lldb/Interpreter/ |
D | ScriptInterpreter.h | 488 GetShortHelpForCommandObject(StructuredData::GenericSP cmd_obj_sp, in GetShortHelpForCommandObject() argument 495 GetFlagsForCommandObject(StructuredData::GenericSP cmd_obj_sp) { in GetFlagsForCommandObject() argument 499 virtual bool GetLongHelpForCommandObject(StructuredData::GenericSP cmd_obj_sp, in GetLongHelpForCommandObject() argument
|
/external/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ |
D | ScriptInterpreterPythonImpl.h | 203 bool GetShortHelpForCommandObject(StructuredData::GenericSP cmd_obj_sp, 207 GetFlagsForCommandObject(StructuredData::GenericSP cmd_obj_sp) override; 209 bool GetLongHelpForCommandObject(StructuredData::GenericSP cmd_obj_sp,
|
D | ScriptInterpreterPython.cpp | 3067 StructuredData::GenericSP cmd_obj_sp, std::string &dest) { in GetShortHelpForCommandObject() argument 3074 if (!cmd_obj_sp) in GetShortHelpForCommandObject() 3078 (PyObject *)cmd_obj_sp->GetValue()); in GetShortHelpForCommandObject() 3123 StructuredData::GenericSP cmd_obj_sp) { in GetFlagsForCommandObject() argument 3130 if (!cmd_obj_sp) in GetFlagsForCommandObject() 3134 (PyObject *)cmd_obj_sp->GetValue()); in GetFlagsForCommandObject() 3172 StructuredData::GenericSP cmd_obj_sp, std::string &dest) { in GetLongHelpForCommandObject() argument 3180 if (!cmd_obj_sp) in GetLongHelpForCommandObject() 3184 (PyObject *)cmd_obj_sp->GetValue()); in GetLongHelpForCommandObject()
|