Lines Matching refs:m_command_dict
462 m_command_dict["apropos"] = CommandObjectSP(new CommandObjectApropos(*this)); in LoadCommandDictionary()
463 m_command_dict["breakpoint"] = in LoadCommandDictionary()
465 m_command_dict["bugreport"] = in LoadCommandDictionary()
467 m_command_dict["command"] = in LoadCommandDictionary()
469 m_command_dict["disassemble"] = in LoadCommandDictionary()
471 m_command_dict["expression"] = in LoadCommandDictionary()
473 m_command_dict["frame"] = in LoadCommandDictionary()
475 m_command_dict["gui"] = CommandObjectSP(new CommandObjectGUI(*this)); in LoadCommandDictionary()
476 m_command_dict["help"] = CommandObjectSP(new CommandObjectHelp(*this)); in LoadCommandDictionary()
477 m_command_dict["log"] = CommandObjectSP(new CommandObjectLog(*this)); in LoadCommandDictionary()
478 m_command_dict["memory"] = CommandObjectSP(new CommandObjectMemory(*this)); in LoadCommandDictionary()
479 m_command_dict["platform"] = in LoadCommandDictionary()
481 m_command_dict["plugin"] = CommandObjectSP(new CommandObjectPlugin(*this)); in LoadCommandDictionary()
482 m_command_dict["process"] = in LoadCommandDictionary()
484 m_command_dict["quit"] = CommandObjectSP(new CommandObjectQuit(*this)); in LoadCommandDictionary()
485 m_command_dict["register"] = in LoadCommandDictionary()
487 m_command_dict["reproducer"] = in LoadCommandDictionary()
489 m_command_dict["script"] = in LoadCommandDictionary()
491 m_command_dict["settings"] = in LoadCommandDictionary()
493 m_command_dict["source"] = in LoadCommandDictionary()
495 m_command_dict["statistics"] = CommandObjectSP(new CommandObjectStats(*this)); in LoadCommandDictionary()
496 m_command_dict["target"] = in LoadCommandDictionary()
498 m_command_dict["thread"] = in LoadCommandDictionary()
500 m_command_dict["type"] = CommandObjectSP(new CommandObjectType(*this)); in LoadCommandDictionary()
501 m_command_dict["version"] = CommandObjectSP(new CommandObjectVersion(*this)); in LoadCommandDictionary()
502 m_command_dict["watchpoint"] = in LoadCommandDictionary()
504 m_command_dict["language"] = in LoadCommandDictionary()
570 m_command_dict[break_regex_cmd_sp->GetCommandName()] = break_regex_cmd_sp; in LoadCommandDictionary()
626 m_command_dict[tbreak_regex_cmd_sp->GetCommandName()] = in LoadCommandDictionary()
646 m_command_dict[attach_regex_cmd_sp->GetCommandName()] = in LoadCommandDictionary()
662 m_command_dict[down_regex_cmd_sp->GetCommandName()] = down_regex_cmd_sp; in LoadCommandDictionary()
676 m_command_dict[up_regex_cmd_sp->GetCommandName()] = up_regex_cmd_sp; in LoadCommandDictionary()
689 m_command_dict[display_regex_cmd_sp->GetCommandName()] = in LoadCommandDictionary()
703 m_command_dict[undisplay_regex_cmd_sp->GetCommandName()] = in LoadCommandDictionary()
721 m_command_dict[command_sp->GetCommandName()] = command_sp; in LoadCommandDictionary()
738 m_command_dict[command_sp->GetCommandName()] = command_sp; in LoadCommandDictionary()
761 m_command_dict[command_sp->GetCommandName()] = command_sp; in LoadCommandDictionary()
797 m_command_dict[list_regex_cmd_sp->GetCommandName()] = list_regex_cmd_sp; in LoadCommandDictionary()
815 m_command_dict[env_regex_cmd_sp->GetCommandName()] = env_regex_cmd_sp; in LoadCommandDictionary()
838 m_command_dict[jump_regex_cmd_sp->GetCommandName()] = jump_regex_cmd_sp; in LoadCommandDictionary()
846 AddNamesMatchingPartialString(m_command_dict, cmd_str, matches, in GetCommandNamesMatchingPartialString()
866 auto pos = m_command_dict.find(cmd); in GetCommandSP()
867 if (pos != m_command_dict.end()) in GetCommandSP()
901 num_cmd_matches = AddNamesMatchingPartialString(m_command_dict, cmd_str, in GetCommandSP()
907 auto pos = m_command_dict.find(cmd); in GetCommandSP()
908 if (pos != m_command_dict.end()) in GetCommandSP()
969 auto name_iter = m_command_dict.find(name_sstr); in AddCommand()
970 if (name_iter != m_command_dict.end()) { in AddCommand()
975 m_command_dict[name_sstr] = cmd_sp; in AddCommand()
992 if (!m_command_dict[name]->IsRemovable()) in AddUserCommand()
1089 return m_command_dict.find(cmd) != m_command_dict.end(); in CommandExists()
1158 auto pos = m_command_dict.find(cmd); in RemoveCommand()
1159 if (pos != m_command_dict.end()) { in RemoveCommand()
1162 m_command_dict.erase(pos); in RemoveCommand()
1186 size_t max_len = FindLongestCommandWord(m_command_dict); in GetHelp()
1192 for (pos = m_command_dict.begin(); pos != m_command_dict.end(); ++pos) { in GetHelp()
1930 bool CommandInterpreter::HasCommands() const { return (!m_command_dict.empty()); } in HasCommands()
2655 m_command_dict); in FindCommandsForApropos()