Lines Matching refs:command_sp
815 CommandObjectSP command_sp(connect_gdb_remote_cmd_up.release()); in LoadCommandDictionary() local
816 m_command_dict[std::string(command_sp->GetCommandName())] = command_sp; in LoadCommandDictionary()
834 CommandObjectSP command_sp(connect_kdp_remote_cmd_up.release()); in LoadCommandDictionary() local
835 m_command_dict[std::string(command_sp->GetCommandName())] = command_sp; in LoadCommandDictionary()
859 CommandObjectSP command_sp(bt_regex_cmd_up.release()); in LoadCommandDictionary() local
860 m_command_dict[std::string(command_sp->GetCommandName())] = command_sp; in LoadCommandDictionary()
1020 CommandObjectSP command_sp; in GetCommandSP() local
1027 command_sp = pos->second; in GetCommandSP()
1033 command_sp = alias_pos->second; in GetCommandSP()
1039 command_sp = pos->second; in GetCommandSP()
1045 command_sp = pos->second; in GetCommandSP()
1048 if (!exact && !command_sp) { in GetCommandSP()
1134 } else if (matches && command_sp) { in GetCommandSP()
1137 descriptions->AppendString(command_sp->GetHelp()); in GetCommandSP()
1140 return command_sp; in GetCommandSP()