reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/source/Interpreter/CommandInterpreter.cpp
  446   m_command_dict["apropos"] = CommandObjectSP(new CommandObjectApropos(*this));
  447   m_command_dict["breakpoint"] =
  449   m_command_dict["command"] =
  451   m_command_dict["disassemble"] =
  453   m_command_dict["expression"] =
  455   m_command_dict["frame"] =
  457   m_command_dict["gui"] = CommandObjectSP(new CommandObjectGUI(*this));
  458   m_command_dict["help"] = CommandObjectSP(new CommandObjectHelp(*this));
  459   m_command_dict["log"] = CommandObjectSP(new CommandObjectLog(*this));
  460   m_command_dict["memory"] = CommandObjectSP(new CommandObjectMemory(*this));
  461   m_command_dict["platform"] =
  463   m_command_dict["plugin"] = CommandObjectSP(new CommandObjectPlugin(*this));
  464   m_command_dict["process"] =
  466   m_command_dict["quit"] = CommandObjectSP(new CommandObjectQuit(*this));
  467   m_command_dict["register"] =
  469   m_command_dict["reproducer"] =
  471   m_command_dict["script"] =
  473   m_command_dict["settings"] =
  475   m_command_dict["source"] =
  477   m_command_dict["statistics"] = CommandObjectSP(new CommandObjectStats(*this));
  478   m_command_dict["target"] =
  480   m_command_dict["thread"] =
  482   m_command_dict["type"] = CommandObjectSP(new CommandObjectType(*this));
  483   m_command_dict["version"] = CommandObjectSP(new CommandObjectVersion(*this));
  484   m_command_dict["watchpoint"] =
  486   m_command_dict["language"] =
  553       m_command_dict[break_regex_cmd_sp->GetCommandName()] = break_regex_cmd_sp;
  610       m_command_dict[tbreak_regex_cmd_sp->GetCommandName()] =
  630       m_command_dict[attach_regex_cmd_sp->GetCommandName()] =
  646       m_command_dict[down_regex_cmd_sp->GetCommandName()] = down_regex_cmd_sp;
  660       m_command_dict[up_regex_cmd_sp->GetCommandName()] = up_regex_cmd_sp;
  673       m_command_dict[display_regex_cmd_sp->GetCommandName()] =
  688       m_command_dict[undisplay_regex_cmd_sp->GetCommandName()] =
  707       m_command_dict[command_sp->GetCommandName()] = command_sp;
  725       m_command_dict[command_sp->GetCommandName()] = command_sp;
  750       m_command_dict[command_sp->GetCommandName()] = command_sp;
  786       m_command_dict[list_regex_cmd_sp->GetCommandName()] = list_regex_cmd_sp;
  804       m_command_dict[env_regex_cmd_sp->GetCommandName()] = env_regex_cmd_sp;
  827       m_command_dict[jump_regex_cmd_sp->GetCommandName()] = jump_regex_cmd_sp;
  835   AddNamesMatchingPartialString(m_command_dict, cmd_str, matches,
  855     auto pos = m_command_dict.find(cmd);
  856     if (pos != m_command_dict.end())
  890       num_cmd_matches = AddNamesMatchingPartialString(m_command_dict, cmd_str,
  896       auto pos = m_command_dict.find(cmd);
  897       if (pos != m_command_dict.end())
  958   auto name_iter = m_command_dict.find(name_sstr);
  959   if (name_iter != m_command_dict.end()) {
  964     m_command_dict[name_sstr] = cmd_sp;
  981       if (!m_command_dict[name]->IsRemovable())
 1078   return m_command_dict.find(cmd) != m_command_dict.end();
 1078   return m_command_dict.find(cmd) != m_command_dict.end();
 1147   auto pos = m_command_dict.find(cmd);
 1148   if (pos != m_command_dict.end()) {
 1151       m_command_dict.erase(pos);
 1175   size_t max_len = FindLongestCommandWord(m_command_dict);
 1181     for (pos = m_command_dict.begin(); pos != m_command_dict.end(); ++pos) {
 1181     for (pos = m_command_dict.begin(); pos != m_command_dict.end(); ++pos) {
 1858 bool CommandInterpreter::HasCommands() const { return (!m_command_dict.empty()); }
 2618                            m_command_dict);