Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp289 if (cmd_obj_sp) in Initialize()
304 if (cmd_obj_sp) in Initialize()
308 if (cmd_obj_sp) in Initialize()
371 if (cmd_obj_sp) in Initialize()
375 if (cmd_obj_sp) in Initialize()
379 if (cmd_obj_sp) in Initialize()
383 if (cmd_obj_sp) in Initialize()
387 if (cmd_obj_sp) in Initialize()
391 if (cmd_obj_sp) in Initialize()
395 if (cmd_obj_sp) in Initialize()
[all …]
H A DCommandAlias.cpp23 static bool ProcessAliasOptionsArgs(lldb::CommandObjectSP &cmd_obj_sp, in ProcessAliasOptionsArgs() argument
38 Options *options = cmd_obj_sp->GetOptions(); in ProcessAliasOptionsArgs()
43 cmd_obj_sp->GetCommandInterpreter().GetExecutionContext(); in ProcessAliasOptionsArgs()
63 if (cmd_obj_sp->WantsRawCommandString()) in ProcessAliasOptionsArgs()
/freebsd-14.2/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectMultiword.cpp82 const CommandObjectSP &cmd_obj_sp) { in LoadSubCommand() argument
83 if (cmd_obj_sp) in LoadSubCommand()
84 lldbassert((&GetCommandInterpreter() == &cmd_obj_sp->GetCommandInterpreter()) && in LoadSubCommand()
92 m_subcommand_dict[std::string(name)] = cmd_obj_sp; in LoadSubCommand()
100 llvm::StringRef name, const CommandObjectSP &cmd_obj_sp, bool can_replace) { in LoadUserSubcommand() argument
102 if (cmd_obj_sp) in LoadUserSubcommand()
103 lldbassert((&GetCommandInterpreter() == &cmd_obj_sp->GetCommandInterpreter()) && in LoadUserSubcommand()
110 cmd_obj_sp->SetIsUserCommand(true); in LoadUserSubcommand()
116 m_subcommand_dict[str_name] = cmd_obj_sp; in LoadUserSubcommand()
129 m_subcommand_dict[str_name] = cmd_obj_sp; in LoadUserSubcommand()
H A DCommandObjectCommands.cpp489 CommandObjectSP cmd_obj_sp = m_interpreter.GetCommandSPExact( in HandleAliasingRawCommand() local
491 if (!cmd_obj_sp) in HandleAliasingRawCommand()
492 cmd_obj_sp = cmd_obj.shared_from_this(); in HandleAliasingRawCommand()
501 alias_command, cmd_obj_sp, raw_command_string)) { in HandleAliasingRawCommand()
1156 StructuredData::GenericSP cmd_obj_sp, in CommandObjectScriptingObject() argument
1159 : CommandObjectRaw(interpreter, name), m_cmd_obj_sp(cmd_obj_sp), in CommandObjectScriptingObject()
1166 GetFlags().Set(scripter->GetFlagsForCommandObject(cmd_obj_sp)); in CommandObjectScriptingObject()
1622 auto cmd_obj_sp = interpreter->CreateScriptCommandObject( in DoExecute() local
1624 if (!cmd_obj_sp) { in DoExecute()
1631 m_interpreter, m_cmd_name, cmd_obj_sp, m_synchronicity, in DoExecute()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DScriptInterpreter.h515 GetShortHelpForCommandObject(StructuredData::GenericSP cmd_obj_sp, in GetShortHelpForCommandObject() argument
522 GetFlagsForCommandObject(StructuredData::GenericSP cmd_obj_sp) { in GetFlagsForCommandObject() argument
526 virtual bool GetLongHelpForCommandObject(StructuredData::GenericSP cmd_obj_sp, in GetLongHelpForCommandObject() argument
/freebsd-14.2/contrib/llvm-project/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.cpp2804 StructuredData::GenericSP cmd_obj_sp, std::string &dest) { in GetShortHelpForCommandObject() argument
2809 if (!cmd_obj_sp) in GetShortHelpForCommandObject()
2813 (PyObject *)cmd_obj_sp->GetValue()); in GetShortHelpForCommandObject()
2839 StructuredData::GenericSP cmd_obj_sp) { in GetFlagsForCommandObject() argument
2846 if (!cmd_obj_sp) in GetFlagsForCommandObject()
2850 (PyObject *)cmd_obj_sp->GetValue()); in GetFlagsForCommandObject()
2888 StructuredData::GenericSP cmd_obj_sp, std::string &dest) { in GetLongHelpForCommandObject() argument
2893 if (!cmd_obj_sp) in GetLongHelpForCommandObject()
2897 (PyObject *)cmd_obj_sp->GetValue()); in GetLongHelpForCommandObject()