Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp639 m_command_dict[std::string(break_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
728 m_command_dict[std::string(down_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
743 m_command_dict[std::string(up_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
873 m_command_dict[std::string(list_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
892 m_command_dict[std::string(env_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
916 m_command_dict[std::string(jump_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
1256 matches->AppendString(exact_cmd->GetCommandName()); in GetUserCommandObject()
2189 Args new_args(alias_cmd_obj->GetCommandName()); in BuildAliasCommandArgs()
3422 llvm::StringRef cmd_name = cmd_obj->GetCommandName(); in ResolveCommandImpl()
3488 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
723 Args full_args(GetCommandName()); in Execute()
747 GetCommandName()); in Execute()
763 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-14.2/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectCommands.cpp136 GetCommandName().str().c_str()); in DoExecute()
490 cmd_obj.GetCommandName(), include_aliases); in HandleAliasingRawCommand()
584 m_interpreter.GetCommandSPExact(cmd_obj->GetCommandName()); in HandleAliasingNormalCommand()
586 tmp_sp = m_interpreter.GetCommandSPExact(sub_cmd_obj->GetCommandName()); in HandleAliasingNormalCommand()
747 GetCommandName().str().c_str()); in DoExecute()
861 m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true); in IOHandlerInputComplete()
1013 m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true); in AddRegexCommandToInterpreter()
H A DCommandObjectMultiword.cpp179 GetCommandName().str().c_str()); in Execute()
203 error_msg.append(std::string(GetCommandName())); in Execute()
H A DCommandObjectHelp.cpp159 sub_cmd_obj->GetCommandName().str().c_str()); in DoExecute()
/freebsd-14.2/contrib/llvm-project/lldb/source/Target/
H A DLanguageRuntime.cpp303 parent->LoadSubCommand(command->GetCommandName().str().c_str(), command); in InitializeCommands()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandObject.h133 llvm::StringRef GetCommandName() const;
/freebsd-14.2/contrib/llvm-project/lldb/source/API/
H A DSBCommandInterpreter.cpp622 return (IsValid() ? ConstString(m_opaque_sp->GetCommandName()).AsCString() : nullptr); in GetName()