Lines Matching refs:command_sp
792 CommandObjectSP command_sp(connect_gdb_remote_cmd_up.release()); in LoadCommandDictionary() local
793 m_command_dict[std::string(command_sp->GetCommandName())] = command_sp; in LoadCommandDictionary()
811 CommandObjectSP command_sp(connect_kdp_remote_cmd_up.release()); in LoadCommandDictionary() local
812 m_command_dict[std::string(command_sp->GetCommandName())] = command_sp; in LoadCommandDictionary()
836 CommandObjectSP command_sp(bt_regex_cmd_up.release()); in LoadCommandDictionary() local
837 m_command_dict[std::string(command_sp->GetCommandName())] = command_sp; in LoadCommandDictionary()
997 CommandObjectSP command_sp; in GetCommandSP() local
1004 command_sp = pos->second; in GetCommandSP()
1010 command_sp = alias_pos->second; in GetCommandSP()
1016 command_sp = pos->second; in GetCommandSP()
1022 command_sp = pos->second; in GetCommandSP()
1025 if (!exact && !command_sp) { in GetCommandSP()
1111 } else if (matches && command_sp) { in GetCommandSP()
1114 descriptions->AppendString(command_sp->GetHelp()); in GetCommandSP()
1117 return command_sp; in GetCommandSP()