Home
last modified time | relevance | path

Searched refs:GetCommandName (Results 1 – 11 of 11) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp662 m_command_dict[std::string(break_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
715 m_command_dict[std::string(tbreak_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
735 m_command_dict[std::string(attach_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
751 m_command_dict[std::string(down_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
766 m_command_dict[std::string(up_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
780 m_command_dict[std::string(display_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
795 m_command_dict[std::string(undisplay_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
816 m_command_dict[std::string(command_sp->GetCommandName())] = command_sp; in LoadCommandDictionary()
835 m_command_dict[std::string(command_sp->GetCommandName())] = command_sp; in LoadCommandDictionary()
860 m_command_dict[std::string(command_sp->GetCommandName())] = command_sp; in LoadCommandDictionary()
[all …]
H A DCommandObject.cpp64 syntax_str.PutCString(GetCommandName()); in GetSyntax()
82 llvm::StringRef CommandObject::GetCommandName() const { return m_cmd_name; } in GetCommandName() function in CommandObject
800 Args full_args(GetCommandName()); in Execute()
824 GetCommandName()); in Execute()
841 std::string full_command(GetCommandName()); in Execute()
H A DCommandAlias.cpp144 llvm::StringRef command_name = m_underlying_command_sp->GetCommandName(); in GetAliasExpansion()
H A DOptions.cpp399 llvm::StringRef name = cmd.GetCommandName(); in GenerateOptionUsage()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectMultiword.cpp179 GetCommandName().str().c_str()); in Execute()
203 error_msg.append(std::string(GetCommandName())); in Execute()
H A DCommandObjectCommands.cpp117 GetCommandName().str().c_str()); in DoExecute()
471 cmd_obj.GetCommandName(), include_aliases); in HandleAliasingRawCommand()
565 m_interpreter.GetCommandSPExact(cmd_obj->GetCommandName()); in HandleAliasingNormalCommand()
567 tmp_sp = m_interpreter.GetCommandSPExact(sub_cmd_obj->GetCommandName()); in HandleAliasingNormalCommand()
704 GetCommandName().str().c_str()); in DoExecute()
817 m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true); in IOHandlerInputComplete()
969 m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true); in AddRegexCommandToInterpreter()
H A DCommandObjectHelp.cpp148 sub_cmd_obj->GetCommandName().str().c_str()); in DoExecute()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DLanguageRuntime.cpp303 parent->LoadSubCommand(command->GetCommandName().str().c_str(), command); in InitializeCommands()
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandObject.h133 llvm::StringRef GetCommandName() const;
H A DCommandInterpreter.h662 ++m_command_usages[cmd_obj.GetCommandName()]; in IncreaseCommandUsage()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBCommandInterpreter.cpp652 return (IsValid() ? ConstString(m_opaque_sp->GetCommandName()).AsCString() : nullptr); in GetName()