Lines Matching refs:command_sp
771 CommandObjectSP command_sp(connect_gdb_remote_cmd_up.release()); in LoadCommandDictionary() local
772 m_command_dict[std::string(command_sp->GetCommandName())] = command_sp; in LoadCommandDictionary()
790 CommandObjectSP command_sp(connect_kdp_remote_cmd_up.release()); in LoadCommandDictionary() local
791 m_command_dict[std::string(command_sp->GetCommandName())] = command_sp; in LoadCommandDictionary()
815 CommandObjectSP command_sp(bt_regex_cmd_up.release()); in LoadCommandDictionary() local
816 m_command_dict[std::string(command_sp->GetCommandName())] = command_sp; in LoadCommandDictionary()
976 CommandObjectSP command_sp; in GetCommandSP() local
983 command_sp = pos->second; in GetCommandSP()
989 command_sp = alias_pos->second; in GetCommandSP()
995 command_sp = pos->second; in GetCommandSP()
1001 command_sp = pos->second; in GetCommandSP()
1004 if (!exact && !command_sp) { in GetCommandSP()
1090 } else if (matches && command_sp) { in GetCommandSP()
1093 descriptions->AppendString(command_sp->GetHelp()); in GetCommandSP()
1096 return command_sp; in GetCommandSP()