Lines Matching refs:command_sp
757 CommandObjectSP command_sp(connect_gdb_remote_cmd_up.release()); in LoadCommandDictionary() local
758 m_command_dict[std::string(command_sp->GetCommandName())] = command_sp; in LoadCommandDictionary()
775 CommandObjectSP command_sp(connect_kdp_remote_cmd_up.release()); in LoadCommandDictionary() local
776 m_command_dict[std::string(command_sp->GetCommandName())] = command_sp; in LoadCommandDictionary()
800 CommandObjectSP command_sp(bt_regex_cmd_up.release()); in LoadCommandDictionary() local
801 m_command_dict[std::string(command_sp->GetCommandName())] = command_sp; in LoadCommandDictionary()
904 CommandObjectSP command_sp; in GetCommandSP() local
911 command_sp = pos->second; in GetCommandSP()
917 command_sp = alias_pos->second; in GetCommandSP()
923 command_sp = pos->second; in GetCommandSP()
926 if (!exact && !command_sp) { in GetCommandSP()
992 } else if (matches && command_sp) { in GetCommandSP()
995 descriptions->AppendString(command_sp->GetHelp()); in GetCommandSP()
998 return command_sp; in GetCommandSP()