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

Declarations

tools/lldb/include/lldb/Interpreter/CommandObject.h
  132   llvm::StringRef GetCommandName() const;

References

tools/lldb/source/API/SBCommandInterpreter.cpp
  730   return (IsValid() ? ConstString(m_opaque_sp->GetCommandName()).AsCString() : nullptr);
tools/lldb/source/Commands/CommandObjectCommands.cpp
  281           GetCommandName().str().c_str());
  619             m_interpreter.GetCommandSPExact(cmd_obj.GetCommandName(), false)) {
  713           m_interpreter.GetCommandSPExact(cmd_obj->GetCommandName(), false);
  715         tmp_sp = m_interpreter.GetCommandSPExact(sub_cmd_obj->GetCommandName(),
  860                                    GetCommandName().str().c_str());
  976         m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true);
 1132         m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true);
tools/lldb/source/Commands/CommandObjectHelp.cpp
  158               sub_cmd_obj->GetCommandName().str().c_str());
tools/lldb/source/Commands/CommandObjectMultiword.cpp
  109                                  GetCommandName().str().c_str());
  134   error_msg.append(GetCommandName());
tools/lldb/source/Commands/CommandObjectSource.cpp
  557                                    GetCommandName().str().c_str());
  933                                    GetCommandName().str().c_str());
tools/lldb/source/Interpreter/CommandAlias.cpp
  142   llvm::StringRef command_name = m_underlying_command_sp->GetCommandName();
tools/lldb/source/Interpreter/CommandInterpreter.cpp
  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;
 1068       matches->AppendString(command_obj->GetCommandName());
 1388   result_str.Printf("%s", alias_cmd_obj->GetCommandName().str().c_str());
 1707     llvm::StringRef command_name = cmd_obj ? cmd_obj->GetCommandName() : "<not found>";
 1735     const std::size_t actual_cmd_name_len = cmd_obj->GetCommandName().size();
 1881   Args new_args(alias_cmd_obj->GetCommandName());
 2596       commands_found.AppendString(cmd_obj->GetCommandName());
 2977           actual_cmd_name_len = cmd_obj->GetCommandName().size();
 2981           llvm::StringRef cmd_name = cmd_obj->GetCommandName();
 2996           llvm::StringRef sub_cmd_name = sub_cmd_obj->GetCommandName();
 3050             cmd_obj->GetCommandName().str().c_str(),
 3088                   cmd_obj->GetCommandName().str().c_str());
tools/lldb/source/Interpreter/CommandObject.cpp
   63   syntax_str.PutCString(GetCommandName());
  963     Args full_args(GetCommandName());
  994     std::string full_command(GetCommandName());
tools/lldb/source/Interpreter/Options.cpp
  404     name = cmd->GetCommandName();
tools/lldb/source/Target/LanguageRuntime.cpp
  291         parent->LoadSubCommand(command->GetCommandName().str().c_str(), command);