Lines Matching refs:command_sp
789 CommandObjectSP command_sp(connect_gdb_remote_cmd_up.release()); in LoadCommandDictionary() local
790 m_command_dict[std::string(command_sp->GetCommandName())] = command_sp; in LoadCommandDictionary()
808 CommandObjectSP command_sp(connect_kdp_remote_cmd_up.release()); in LoadCommandDictionary() local
809 m_command_dict[std::string(command_sp->GetCommandName())] = command_sp; in LoadCommandDictionary()
833 CommandObjectSP command_sp(bt_regex_cmd_up.release()); in LoadCommandDictionary() local
834 m_command_dict[std::string(command_sp->GetCommandName())] = command_sp; in LoadCommandDictionary()
994 CommandObjectSP command_sp; in GetCommandSP() local
1001 command_sp = pos->second; in GetCommandSP()
1007 command_sp = alias_pos->second; in GetCommandSP()
1013 command_sp = pos->second; in GetCommandSP()
1019 command_sp = pos->second; in GetCommandSP()
1022 if (!exact && !command_sp) { in GetCommandSP()
1108 } else if (matches && command_sp) { in GetCommandSP()
1111 descriptions->AppendString(command_sp->GetHelp()); in GetCommandSP()
1114 return command_sp; in GetCommandSP()