Lines Matching refs:cmd_sp
941 [&result](CommandObjectSP cmd_sp, in VerifyUserMultiwordCmdPath()
943 if (!cmd_sp) { in VerifyUserMultiwordCmdPath()
947 if (!cmd_sp->IsUserCommand()) { in VerifyUserMultiwordCmdPath()
953 CommandObjectMultiword *cmd_as_multi = cmd_sp->GetAsMultiwordCommand(); in VerifyUserMultiwordCmdPath()
1121 const lldb::CommandObjectSP &cmd_sp, in AddCommand() argument
1123 if (cmd_sp.get()) in AddCommand()
1124 lldbassert((this == &cmd_sp->GetCommandInterpreter()) && in AddCommand()
1130 cmd_sp->SetIsUserCommand(false); in AddCommand()
1137 name_iter->second = cmd_sp; in AddCommand()
1139 m_command_dict[name_sstr] = cmd_sp; in AddCommand()
1145 const lldb::CommandObjectSP &cmd_sp, in AddUserCommand() argument
1148 if (cmd_sp.get()) in AddUserCommand()
1149 lldbassert((this == &cmd_sp->GetCommandInterpreter()) && in AddUserCommand()
1170 if (cmd_sp->IsMultiwordObject()) { in AddUserCommand()
1184 cmd_sp->SetIsUserCommand(true); in AddUserCommand()
1186 if (cmd_sp->IsMultiwordObject()) in AddUserCommand()
1187 m_user_mw_dict[std::string(name)] = cmd_sp; in AddUserCommand()
1189 m_user_dict[std::string(name)] = cmd_sp; in AddUserCommand()