Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Interpreter/
DCommandAlias.cpp78 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()
DCommandInterpreter.cpp992 const lldb::CommandObjectSP &cmd_sp, in AddCommand() argument
994 if (cmd_sp.get()) in AddCommand()
995 lldbassert((this == &cmd_sp->GetCommandInterpreter()) && in AddCommand()
1006 name_iter->second = cmd_sp; in AddCommand()
1008 m_command_dict[name_sstr] = cmd_sp; in AddCommand()
1014 const lldb::CommandObjectSP &cmd_sp, in AddUserCommand() argument
1016 if (cmd_sp.get()) in AddUserCommand()
1017 lldbassert((this == &cmd_sp->GetCommandInterpreter()) && in AddUserCommand()
1036 m_user_dict[std::string(name)] = cmd_sp; in AddUserCommand()
/external/llvm-project/lldb/include/lldb/Interpreter/
DCommandAlias.h24 CommandAlias(CommandInterpreter &interpreter, lldb::CommandObjectSP cmd_sp,
DCommandInterpreter.h261 bool AddCommand(llvm::StringRef name, const lldb::CommandObjectSP &cmd_sp,
264 bool AddUserCommand(llvm::StringRef name, const lldb::CommandObjectSP &cmd_sp,
/external/llvm-project/lldb/source/Commands/
DCommandObjectCommands.cpp847 CommandObjectSP cmd_sp(m_regex_cmd_up.release()); in IOHandlerInputComplete() local
848 m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true); in IOHandlerInputComplete()
1003 CommandObjectSP cmd_sp(m_regex_cmd_up.release()); in AddRegexCommandToInterpreter() local
1004 m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true); in AddRegexCommandToInterpreter()
/external/llvm-project/lldb/include/lldb/API/
DSBCommandInterpreter.h402 SBCommand(lldb::CommandObjectSP cmd_sp);
/external/llvm-project/lldb/source/API/
DSBCommandInterpreter.cpp643 SBCommand::SBCommand(lldb::CommandObjectSP cmd_sp) : m_opaque_sp(cmd_sp) {} in SBCommand() argument