Searched refs:cmd_sp (Results 1 – 7 of 7) sorted by relevance
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/ |
| H A D | CommandAlias.cpp | 76 lldb::CommandObjectSP cmd_sp, in CommandAlias() argument 85 if (ProcessAliasOptionsArgs(cmd_sp, options_args, m_option_args_sp)) { in CommandAlias() 86 m_underlying_command_sp = cmd_sp; in CommandAlias()
|
| H A D | CommandInterpreter.cpp | 959 const lldb::CommandObjectSP &cmd_sp, in AddCommand() argument 961 if (cmd_sp.get()) in AddCommand() 962 lldbassert((this == &cmd_sp->GetCommandInterpreter()) && in AddCommand() 973 name_iter->second = cmd_sp; in AddCommand() 975 m_command_dict[name_sstr] = cmd_sp; in AddCommand() 981 const lldb::CommandObjectSP &cmd_sp, in AddUserCommand() argument 983 if (cmd_sp.get()) in AddUserCommand() 984 lldbassert((this == &cmd_sp->GetCommandInterpreter()) && in AddUserCommand() 1003 m_user_dict[name] = cmd_sp; in AddUserCommand()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Interpreter/ |
| H A D | CommandAlias.h | 25 CommandAlias(CommandInterpreter &interpreter, lldb::CommandObjectSP cmd_sp,
|
| H A D | CommandInterpreter.h | 209 bool AddCommand(llvm::StringRef name, const lldb::CommandObjectSP &cmd_sp, 212 bool AddUserCommand(llvm::StringRef name, const lldb::CommandObjectSP &cmd_sp,
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/ |
| H A D | CommandObjectCommands.cpp | 1012 CommandObjectSP cmd_sp(m_regex_cmd_ap.release()); in IOHandlerInputComplete() local 1013 m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true); in IOHandlerInputComplete() 1168 CommandObjectSP cmd_sp(m_regex_cmd_ap.release()); in AddRegexCommandToInterpreter() local 1169 m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true); in AddRegexCommandToInterpreter()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/API/ |
| H A D | SBCommandInterpreter.h | 309 SBCommand(lldb::CommandObjectSP cmd_sp);
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/API/ |
| H A D | SBCommandInterpreter.cpp | 584 SBCommand::SBCommand(lldb::CommandObjectSP cmd_sp) : m_opaque_sp(cmd_sp) {} in SBCommand() argument
|