Lines Matching refs:cmd_sp
920 [&result](CommandObjectSP cmd_sp, in VerifyUserMultiwordCmdPath()
922 if (!cmd_sp) { in VerifyUserMultiwordCmdPath()
926 if (!cmd_sp->IsUserCommand()) { in VerifyUserMultiwordCmdPath()
932 CommandObjectMultiword *cmd_as_multi = cmd_sp->GetAsMultiwordCommand(); in VerifyUserMultiwordCmdPath()
1100 const lldb::CommandObjectSP &cmd_sp, in AddCommand() argument
1102 if (cmd_sp.get()) in AddCommand()
1103 lldbassert((this == &cmd_sp->GetCommandInterpreter()) && in AddCommand()
1109 cmd_sp->SetIsUserCommand(false); in AddCommand()
1116 name_iter->second = cmd_sp; in AddCommand()
1118 m_command_dict[name_sstr] = cmd_sp; in AddCommand()
1124 const lldb::CommandObjectSP &cmd_sp, in AddUserCommand() argument
1127 if (cmd_sp.get()) in AddUserCommand()
1128 lldbassert((this == &cmd_sp->GetCommandInterpreter()) && in AddUserCommand()
1145 if (cmd_sp->IsMultiwordObject()) { in AddUserCommand()
1159 cmd_sp->SetIsUserCommand(true); in AddUserCommand()
1161 if (cmd_sp->IsMultiwordObject()) in AddUserCommand()
1162 m_user_mw_dict[std::string(name)] = cmd_sp; in AddUserCommand()
1164 m_user_dict[std::string(name)] = cmd_sp; in AddUserCommand()