Searched refs:cmd_sp (Results 1 – 7 of 7) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/lldb/source/Interpreter/ |
| H A D | CommandAlias.cpp | 77 lldb::CommandObjectSP cmd_sp, in CommandAlias() argument 86 if (ProcessAliasOptionsArgs(cmd_sp, options_args, m_option_args_sp)) { in CommandAlias() 87 m_underlying_command_sp = cmd_sp; in CommandAlias()
|
| H A D | CommandInterpreter.cpp | 1002 const lldb::CommandObjectSP &cmd_sp, in AddCommand() argument 1004 if (cmd_sp.get()) in AddCommand() 1005 lldbassert((this == &cmd_sp->GetCommandInterpreter()) && in AddCommand() 1016 name_iter->second = cmd_sp; in AddCommand() 1018 m_command_dict[name_sstr] = cmd_sp; in AddCommand() 1024 const lldb::CommandObjectSP &cmd_sp, in AddUserCommand() argument 1026 if (cmd_sp.get()) in AddUserCommand() 1027 lldbassert((this == &cmd_sp->GetCommandInterpreter()) && in AddUserCommand() 1046 m_user_dict[std::string(name)] = cmd_sp; in AddUserCommand()
|
| /freebsd-13.1/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 | 256 bool AddCommand(llvm::StringRef name, const lldb::CommandObjectSP &cmd_sp, 259 bool AddUserCommand(llvm::StringRef name, const lldb::CommandObjectSP &cmd_sp,
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectCommands.cpp | 818 CommandObjectSP cmd_sp(m_regex_cmd_up.release()); in IOHandlerInputComplete() local 819 m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true); in IOHandlerInputComplete() 972 CommandObjectSP cmd_sp(m_regex_cmd_up.release()); in AddRegexCommandToInterpreter() local 973 m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true); in AddRegexCommandToInterpreter()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/API/ |
| H A D | SBCommandInterpreter.h | 402 SBCommand(lldb::CommandObjectSP cmd_sp);
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/API/ |
| H A D | SBCommandInterpreter.cpp | 631 SBCommand::SBCommand(lldb::CommandObjectSP cmd_sp) : m_opaque_sp(cmd_sp) {} in SBCommand() argument
|