Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Interpreter/
H A DCommandInterpreter.cpp707 m_command_dict[std::string(down_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
722 m_command_dict[std::string(up_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
852 m_command_dict[std::string(list_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
871 m_command_dict[std::string(env_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
895 m_command_dict[std::string(jump_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
1237 matches->AppendString(command_obj->GetCommandName()); in GetCommandObject()
1256 matches->AppendString(exact_cmd->GetCommandName()); in GetUserCommandObject()
2139 Args new_args(alias_cmd_obj->GetCommandName()); in BuildAliasCommandArgs()
3353 llvm::StringRef cmd_name = cmd_obj->GetCommandName(); in ResolveCommandImpl()
3419 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()
743 GetCommandName()); in Execute()
759 std::string full_command(GetCommandName()); in Execute()
H A DCommandAlias.cpp142 llvm::StringRef command_name = m_underlying_command_sp->GetCommandName(); in GetAliasExpansion()
H A DOptions.cpp399 llvm::StringRef name = cmd.GetCommandName(); in GenerateOptionUsage()
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectCommands.cpp136 GetCommandName().str().c_str()); in DoExecute()
489 cmd_obj.GetCommandName(), include_aliases)) { in HandleAliasingRawCommand()
585 m_interpreter.GetCommandSPExact(cmd_obj->GetCommandName()); in HandleAliasingNormalCommand()
587 tmp_sp = m_interpreter.GetCommandSPExact(sub_cmd_obj->GetCommandName()); in HandleAliasingNormalCommand()
749 GetCommandName().str().c_str()); in DoExecute()
864 m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true); in IOHandlerInputComplete()
1018 m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true); in AddRegexCommandToInterpreter()
H A DCommandObjectMultiword.cpp183 GetCommandName().str().c_str()); in Execute()
207 error_msg.append(std::string(GetCommandName())); in Execute()
H A DCommandObjectHelp.cpp159 sub_cmd_obj->GetCommandName().str().c_str()); in DoExecute()
/llvm-project-15.0.7/lldb/unittests/Interpreter/
H A DTestCommandPaths.cpp99 ASSERT_STREQ(multi_word_cmd->GetCommandName().str().c_str(), test_str); in RunTest()
/llvm-project-15.0.7/lldb/source/Target/
H A DLanguageRuntime.cpp303 parent->LoadSubCommand(command->GetCommandName().str().c_str(), command); in InitializeCommands()
/llvm-project-15.0.7/lldb/include/lldb/Interpreter/
H A DCommandObject.h131 llvm::StringRef GetCommandName() const;
/llvm-project-15.0.7/lldb/source/API/
H A DSBCommandInterpreter.cpp601 return (IsValid() ? ConstString(m_opaque_sp->GetCommandName()).AsCString() : nullptr); in GetName()