Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/
H A DCommandInterpreter.cpp626 m_command_dict[tbreak_regex_cmd_sp->GetCommandName()] = in LoadCommandDictionary()
646 m_command_dict[attach_regex_cmd_sp->GetCommandName()] = 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()
1079 matches->AppendString(command_obj->GetCommandName()); in GetCommandObject()
1953 Args new_args(alias_cmd_obj->GetCommandName()); in BuildAliasCommandArgs()
2633 commands_found.AppendString(cmd_obj->GetCommandName()); in FindCommandsForApropos()
3113 cmd_obj->GetCommandName().str().c_str(), in ResolveCommandImpl()
[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
957 Args full_args(GetCommandName()); in Execute()
988 std::string full_command(GetCommandName()); in Execute()
H A DCommandAlias.cpp143 llvm::StringRef command_name = m_underlying_command_sp->GetCommandName(); in GetAliasExpansion()
H A DOptions.cpp407 name = cmd->GetCommandName(); in GenerateOptionUsage()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectCommands.cpp302 GetCommandName().str().c_str()); in DoExecute()
642 m_interpreter.GetCommandSPExact(cmd_obj.GetCommandName(), false)) { in HandleAliasingRawCommand()
736 m_interpreter.GetCommandSPExact(cmd_obj->GetCommandName(), false); in HandleAliasingNormalCommand()
738 tmp_sp = m_interpreter.GetCommandSPExact(sub_cmd_obj->GetCommandName(), in HandleAliasingNormalCommand()
887 GetCommandName().str().c_str()); in DoExecute()
1013 m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true); in IOHandlerInputComplete()
1169 m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true); in AddRegexCommandToInterpreter()
H A DCommandObjectMultiword.cpp110 GetCommandName().str().c_str()); in Execute()
135 error_msg.append(GetCommandName()); in Execute()
H A DCommandObjectHelp.cpp165 sub_cmd_obj->GetCommandName().str().c_str()); in DoExecute()
H A DCommandObjectSource.cpp571 GetCommandName().str().c_str()); in DoExecute()
966 GetCommandName().str().c_str()); in DoExecute()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DLanguageRuntime.cpp289 parent->LoadSubCommand(command->GetCommandName().str().c_str(), command); in InitializeCommands()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DCommandObject.h132 llvm::StringRef GetCommandName() const;
/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBCommandInterpreter.cpp589 return (IsValid() ? ConstString(m_opaque_sp->GetCommandName()).AsCString() : nullptr); in GetName()