Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandAlias.cpp73 lldb::CommandObjectSP cmd_sp, in CommandAlias() argument
83 ProcessAliasOptionsArgs(cmd_sp, options_args, m_option_args_sp)) { in CommandAlias()
88 m_underlying_command_sp = cmd_sp; in CommandAlias()
H A DCommandInterpreter.cpp968 [&result](CommandObjectSP cmd_sp, in VerifyUserMultiwordCmdPath()
970 if (!cmd_sp) { in VerifyUserMultiwordCmdPath()
975 if (!cmd_sp->IsUserCommand()) { in VerifyUserMultiwordCmdPath()
982 CommandObjectMultiword *cmd_as_multi = cmd_sp->GetAsMultiwordCommand(); in VerifyUserMultiwordCmdPath()
1200 const lldb::CommandObjectSP &cmd_sp, in AddCommand() argument
1202 if (cmd_sp.get()) in AddCommand()
1203 lldbassert((this == &cmd_sp->GetCommandInterpreter()) && in AddCommand()
1209 cmd_sp->SetIsUserCommand(false); in AddCommand()
1216 name_iter->second = cmd_sp; in AddCommand()
1218 m_command_dict[name_sstr] = cmd_sp; in AddCommand()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectCommands.cpp825 CommandObjectSP cmd_sp(m_regex_cmd_up.release()); in IOHandlerInputComplete() local
826 m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true); in IOHandlerInputComplete()
978 CommandObjectSP cmd_sp(m_regex_cmd_up.release()); in AddRegexCommandToInterpreter() local
979 m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true); in AddRegexCommandToInterpreter()
2638 CommandObjectSP cmd_sp = m_interpreter.GetCommandSPExact(root_cmd); in DoExecute() local
2639 if (!cmd_sp) { in DoExecute()
2644 if (!cmd_sp->IsUserCommand()) { in DoExecute()
2649 if (cmd_sp->GetAsMultiwordCommand() && num_args == 1) { in DoExecute()
2817 auto cmd_sp = CommandObjectSP(new CommandObjectMultiword( in DoExecute() local
2820 cmd_sp->GetAsMultiwordCommand()->SetRemovable(true); in DoExecute()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandAlias.h24 CommandAlias(CommandInterpreter &interpreter, lldb::CommandObjectSP cmd_sp,
H A DCommandInterpreter.h285 bool AddCommand(llvm::StringRef name, const lldb::CommandObjectSP &cmd_sp,
289 const lldb::CommandObjectSP &cmd_sp, bool can_replace);
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBCommandInterpreter.h477 SBCommand(lldb::CommandObjectSP cmd_sp);
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBCommandInterpreter.cpp649 SBCommand::SBCommand(lldb::CommandObjectSP cmd_sp) : m_opaque_sp(cmd_sp) {} in SBCommand() argument