Searched refs:cmd_sp (Results 1 – 7 of 7) sorted by relevance
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectCommands.cpp | 816 CommandObjectSP cmd_sp(m_regex_cmd_up.release()); in IOHandlerInputComplete() local 817 m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true); in IOHandlerInputComplete() 968 CommandObjectSP cmd_sp(m_regex_cmd_up.release()); in AddRegexCommandToInterpreter() local 969 m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true); in AddRegexCommandToInterpreter() 2395 CommandObjectSP cmd_sp = m_interpreter.GetCommandSPExact(root_cmd); in DoExecute() local 2396 if (!cmd_sp) { in DoExecute() 2401 if (!cmd_sp->IsUserCommand()) { in DoExecute() 2406 if (cmd_sp->GetAsMultiwordCommand() && num_args == 1) { in DoExecute() 2574 auto cmd_sp = CommandObjectSP(new CommandObjectMultiword( in DoExecute() local 2577 cmd_sp->GetAsMultiwordCommand()->SetRemovable(true); in DoExecute() [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Interpreter/ |
H A D | CommandAlias.cpp | 79 lldb::CommandObjectSP cmd_sp, in CommandAlias() argument 88 if (ProcessAliasOptionsArgs(cmd_sp, options_args, m_option_args_sp)) { in CommandAlias() 89 m_underlying_command_sp = cmd_sp; in CommandAlias()
|
H A D | CommandInterpreter.cpp | 964 [&result](CommandObjectSP cmd_sp, in VerifyUserMultiwordCmdPath() 966 if (!cmd_sp) { in VerifyUserMultiwordCmdPath() 970 if (!cmd_sp->IsUserCommand()) { in VerifyUserMultiwordCmdPath() 976 CommandObjectMultiword *cmd_as_multi = cmd_sp->GetAsMultiwordCommand(); in VerifyUserMultiwordCmdPath() 1144 const lldb::CommandObjectSP &cmd_sp, in AddCommand() argument 1146 if (cmd_sp.get()) in AddCommand() 1147 lldbassert((this == &cmd_sp->GetCommandInterpreter()) && in AddCommand() 1153 cmd_sp->SetIsUserCommand(false); in AddCommand() 1160 name_iter->second = cmd_sp; in AddCommand() 1162 m_command_dict[name_sstr] = cmd_sp; in AddCommand() [all …]
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
H A D | CommandAlias.h | 24 CommandAlias(CommandInterpreter &interpreter, lldb::CommandObjectSP cmd_sp,
|
H A D | CommandInterpreter.h | 281 bool AddCommand(llvm::StringRef name, const lldb::CommandObjectSP &cmd_sp, 285 const lldb::CommandObjectSP &cmd_sp, bool can_replace);
|
/freebsd/contrib/llvm-project/lldb/include/lldb/API/ |
H A D | SBCommandInterpreter.h | 475 SBCommand(lldb::CommandObjectSP cmd_sp);
|
/freebsd/contrib/llvm-project/lldb/source/API/ |
H A D | SBCommandInterpreter.cpp | 637 SBCommand::SBCommand(lldb::CommandObjectSP cmd_sp) : m_opaque_sp(cmd_sp) {} in SBCommand() argument
|