Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/source/Interpreter/
H A DCommandInterpreter.cpp633 m_command_dict[std::string(break_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
689 m_command_dict[std::string(tbreak_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
709 m_command_dict[std::string(attach_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
725 m_command_dict[std::string(down_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
740 m_command_dict[std::string(up_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
754 m_command_dict[std::string(display_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
769 m_command_dict[std::string(undisplay_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
790 m_command_dict[std::string(command_sp->GetCommandName())] = command_sp; in LoadCommandDictionary()
809 m_command_dict[std::string(command_sp->GetCommandName())] = command_sp; in LoadCommandDictionary()
834 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
723 Args full_args(GetCommandName()); in Execute()
743 GetCommandName()); in Execute()
760 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.cpp399 llvm::StringRef name = cmd.GetCommandName(); in GenerateOptionUsage()
/openbsd-src/gnu/llvm/lldb/source/Commands/
H A DCommandObjectCommands.cpp137 GetCommandName().str().c_str()); in DoExecute()
494 cmd_obj.GetCommandName(), include_aliases); in HandleAliasingRawCommand()
588 m_interpreter.GetCommandSPExact(cmd_obj->GetCommandName()); in HandleAliasingNormalCommand()
590 tmp_sp = m_interpreter.GetCommandSPExact(sub_cmd_obj->GetCommandName()); in HandleAliasingNormalCommand()
752 GetCommandName().str().c_str()); in DoExecute()
867 m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true); in IOHandlerInputComplete()
1021 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()
/openbsd-src/gnu/llvm/lldb/source/Target/
H A DLanguageRuntime.cpp303 parent->LoadSubCommand(command->GetCommandName().str().c_str(), command); in InitializeCommands()
/openbsd-src/gnu/llvm/lldb/include/lldb/Interpreter/
H A DCommandObject.h133 llvm::StringRef GetCommandName() const;
/openbsd-src/gnu/llvm/lldb/source/API/
H A DSBCommandInterpreter.cpp602 return (IsValid() ? ConstString(m_opaque_sp->GetCommandName()).AsCString() : nullptr); in GetName()