Lines Matching refs:cmd_sp
964 [&result](CommandObjectSP cmd_sp, in VerifyUserMultiwordCmdPath()
966 if (!cmd_sp) { in VerifyUserMultiwordCmdPath()
970 if (!cmd_sp->IsUserCommand()) { in VerifyUserMultiwordCmdPath()
976 CommandObjectMultiword *cmd_as_multi = cmd_sp->GetAsMultiwordCommand(); in VerifyUserMultiwordCmdPath()
1144 const lldb::CommandObjectSP &cmd_sp, in AddCommand() argument
1146 if (cmd_sp.get()) in AddCommand()
1147 lldbassert((this == &cmd_sp->GetCommandInterpreter()) && in AddCommand()
1153 cmd_sp->SetIsUserCommand(false); in AddCommand()
1160 name_iter->second = cmd_sp; in AddCommand()
1162 m_command_dict[name_sstr] = cmd_sp; in AddCommand()
1168 const lldb::CommandObjectSP &cmd_sp, in AddUserCommand() argument
1171 if (cmd_sp.get()) in AddUserCommand()
1172 lldbassert((this == &cmd_sp->GetCommandInterpreter()) && in AddUserCommand()
1193 if (cmd_sp->IsMultiwordObject()) { in AddUserCommand()
1207 cmd_sp->SetIsUserCommand(true); in AddUserCommand()
1209 if (cmd_sp->IsMultiwordObject()) in AddUserCommand()
1210 m_user_mw_dict[std::string(name)] = cmd_sp; in AddUserCommand()
1212 m_user_dict[std::string(name)] = cmd_sp; in AddUserCommand()