Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Interpreter/
H A DCommandInterpreter.cpp272 if (cmd_obj_sp) in Initialize()
287 if (cmd_obj_sp) in Initialize()
291 if (cmd_obj_sp) in Initialize()
354 if (cmd_obj_sp) in Initialize()
358 if (cmd_obj_sp) in Initialize()
362 if (cmd_obj_sp) in Initialize()
366 if (cmd_obj_sp) in Initialize()
370 if (cmd_obj_sp) in Initialize()
374 if (cmd_obj_sp) in Initialize()
378 if (cmd_obj_sp) in Initialize()
[all …]
H A DCommandAlias.cpp22 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()
62 if (cmd_obj_sp->WantsRawCommandString()) in ProcessAliasOptionsArgs()
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectMultiword.cpp81 const CommandObjectSP &cmd_obj_sp) { in LoadSubCommand() argument
82 if (cmd_obj_sp) in LoadSubCommand()
83 lldbassert((&GetCommandInterpreter() == &cmd_obj_sp->GetCommandInterpreter()) && in LoadSubCommand()
91 m_subcommand_dict[std::string(name)] = cmd_obj_sp; in LoadSubCommand()
99 llvm::StringRef name, const CommandObjectSP &cmd_obj_sp, bool can_replace) { in LoadUserSubcommand() argument
101 if (cmd_obj_sp) in LoadUserSubcommand()
102 lldbassert((&GetCommandInterpreter() == &cmd_obj_sp->GetCommandInterpreter()) && in LoadUserSubcommand()
109 cmd_obj_sp->SetIsUserCommand(true); in LoadUserSubcommand()
115 m_subcommand_dict[str_name] = cmd_obj_sp; in LoadUserSubcommand()
128 m_subcommand_dict[str_name] = cmd_obj_sp; in LoadUserSubcommand()
H A DCommandObjectCommands.cpp488 if (CommandObjectSP cmd_obj_sp = m_interpreter.GetCommandSPExact( in HandleAliasingRawCommand() local
497 alias_command, cmd_obj_sp, raw_command_string)) { in HandleAliasingRawCommand()
1152 StructuredData::GenericSP cmd_obj_sp, in CommandObjectScriptingObject() argument
1154 : CommandObjectRaw(interpreter, name), m_cmd_obj_sp(cmd_obj_sp), in CommandObjectScriptingObject()
1161 GetFlags().Set(scripter->GetFlagsForCommandObject(cmd_obj_sp)); in CommandObjectScriptingObject()
1597 auto cmd_obj_sp = interpreter->CreateScriptCommandObject( in DoExecute() local
1599 if (!cmd_obj_sp) { in DoExecute()
1605 m_interpreter, m_cmd_name, cmd_obj_sp, m_synchronicity)); in DoExecute()
/llvm-project-15.0.7/lldb/include/lldb/Interpreter/
H A DScriptInterpreter.h518 GetShortHelpForCommandObject(StructuredData::GenericSP cmd_obj_sp, in GetShortHelpForCommandObject() argument
525 GetFlagsForCommandObject(StructuredData::GenericSP cmd_obj_sp) { in GetFlagsForCommandObject() argument
529 virtual bool GetLongHelpForCommandObject(StructuredData::GenericSP cmd_obj_sp, in GetLongHelpForCommandObject() argument
/llvm-project-15.0.7/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPythonImpl.h207 bool GetShortHelpForCommandObject(StructuredData::GenericSP cmd_obj_sp,
211 GetFlagsForCommandObject(StructuredData::GenericSP cmd_obj_sp) override;
213 bool GetLongHelpForCommandObject(StructuredData::GenericSP cmd_obj_sp,
H A DScriptInterpreterPython.cpp2976 StructuredData::GenericSP cmd_obj_sp, std::string &dest) { in GetShortHelpForCommandObject() argument
2983 if (!cmd_obj_sp) in GetShortHelpForCommandObject()
2987 (PyObject *)cmd_obj_sp->GetValue()); in GetShortHelpForCommandObject()
3032 StructuredData::GenericSP cmd_obj_sp) { in GetFlagsForCommandObject() argument
3039 if (!cmd_obj_sp) in GetFlagsForCommandObject()
3043 (PyObject *)cmd_obj_sp->GetValue()); in GetFlagsForCommandObject()
3081 StructuredData::GenericSP cmd_obj_sp, std::string &dest) { in GetLongHelpForCommandObject() argument
3089 if (!cmd_obj_sp) in GetLongHelpForCommandObject()
3093 (PyObject *)cmd_obj_sp->GetValue()); in GetLongHelpForCommandObject()