Searched refs:cmd_sp (Results 1 – 7 of 7) sorted by relevance
| /openbsd-src/gnu/llvm/lldb/source/Commands/ |
| H A D | CommandObjectCommands.cpp | 866 CommandObjectSP cmd_sp(m_regex_cmd_up.release()); in IOHandlerInputComplete() local 867 m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true); in IOHandlerInputComplete() 1020 CommandObjectSP cmd_sp(m_regex_cmd_up.release()); in AddRegexCommandToInterpreter() local 1021 m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true); in AddRegexCommandToInterpreter() 1729 CommandObjectSP cmd_sp = m_interpreter.GetCommandSPExact(root_cmd); in DoExecute() local 1730 if (!cmd_sp) { in DoExecute() 1735 if (!cmd_sp->IsUserCommand()) { in DoExecute() 1740 if (cmd_sp->GetAsMultiwordCommand() && num_args == 1) { in DoExecute() 1921 auto cmd_sp = CommandObjectSP(new CommandObjectMultiword( in DoExecute() local 1924 cmd_sp->GetAsMultiwordCommand()->SetRemovable(true); in DoExecute() [all …]
|
| /openbsd-src/gnu/llvm/lldb/source/Interpreter/ |
| H A D | CommandAlias.cpp | 78 lldb::CommandObjectSP cmd_sp, in CommandAlias() argument 87 if (ProcessAliasOptionsArgs(cmd_sp, options_args, m_option_args_sp)) { in CommandAlias() 88 m_underlying_command_sp = cmd_sp; in CommandAlias()
|
| H A D | CommandInterpreter.cpp | 938 [&result](CommandObjectSP cmd_sp, in VerifyUserMultiwordCmdPath() 940 if (!cmd_sp) { in VerifyUserMultiwordCmdPath() 944 if (!cmd_sp->IsUserCommand()) { in VerifyUserMultiwordCmdPath() 950 CommandObjectMultiword *cmd_as_multi = cmd_sp->GetAsMultiwordCommand(); in VerifyUserMultiwordCmdPath() 1118 const lldb::CommandObjectSP &cmd_sp, in AddCommand() argument 1120 if (cmd_sp.get()) in AddCommand() 1121 lldbassert((this == &cmd_sp->GetCommandInterpreter()) && in AddCommand() 1127 cmd_sp->SetIsUserCommand(false); in AddCommand() 1134 name_iter->second = cmd_sp; in AddCommand() 1136 m_command_dict[name_sstr] = cmd_sp; in AddCommand() [all …]
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Interpreter/ |
| H A D | CommandAlias.h | 24 CommandAlias(CommandInterpreter &interpreter, lldb::CommandObjectSP cmd_sp,
|
| H A D | CommandInterpreter.h | 267 bool AddCommand(llvm::StringRef name, const lldb::CommandObjectSP &cmd_sp, 271 const lldb::CommandObjectSP &cmd_sp, bool can_replace);
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/API/ |
| H A D | SBCommandInterpreter.h | 406 SBCommand(lldb::CommandObjectSP cmd_sp);
|
| /openbsd-src/gnu/llvm/lldb/source/API/ |
| H A D | SBCommandInterpreter.cpp | 587 SBCommand::SBCommand(lldb::CommandObjectSP cmd_sp) : m_opaque_sp(cmd_sp) {} in SBCommand() argument
|