Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Interpreter/
DCommandInterpreter.cpp593 m_command_dict[std::string(break_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
649 m_command_dict[std::string(tbreak_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
669 m_command_dict[std::string(attach_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
685 m_command_dict[std::string(down_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
700 m_command_dict[std::string(up_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
714 m_command_dict[std::string(display_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
729 m_command_dict[std::string(undisplay_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
748 m_command_dict[std::string(command_sp->GetCommandName())] = command_sp; in LoadCommandDictionary()
766 m_command_dict[std::string(command_sp->GetCommandName())] = command_sp; in LoadCommandDictionary()
791 m_command_dict[std::string(command_sp->GetCommandName())] = command_sp; in LoadCommandDictionary()
[all …]
DCommandObject.cpp65 syntax_str.PutCString(GetCommandName()); in GetSyntax()
83 llvm::StringRef CommandObject::GetCommandName() const { return m_cmd_name; } in GetCommandName() function in CommandObject
984 Args full_args(GetCommandName()); in Execute()
1015 std::string full_command(GetCommandName()); in Execute()
DCommandAlias.cpp143 llvm::StringRef command_name = m_underlying_command_sp->GetCommandName(); in GetAliasExpansion()
DOptions.cpp402 name = cmd->GetCommandName(); in GenerateOptionUsage()
/external/llvm-project/lldb/source/Commands/
DCommandObjectCommands.cpp130 GetCommandName().str().c_str()); in DoExecute()
467 m_interpreter.GetCommandSPExact(cmd_obj.GetCommandName(), false)) { in HandleAliasingRawCommand()
561 m_interpreter.GetCommandSPExact(cmd_obj->GetCommandName(), false); in HandleAliasingNormalCommand()
563 tmp_sp = m_interpreter.GetCommandSPExact(sub_cmd_obj->GetCommandName(), in HandleAliasingNormalCommand()
731 GetCommandName().str().c_str()); in DoExecute()
848 m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true); in IOHandlerInputComplete()
1004 m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true); in AddRegexCommandToInterpreter()
DCommandObjectMultiword.cpp108 GetCommandName().str().c_str()); in Execute()
133 error_msg.append(std::string(GetCommandName())); in Execute()
DCommandObjectHelp.cpp158 sub_cmd_obj->GetCommandName().str().c_str()); in DoExecute()
DCommandObjectSource.cpp543 GetCommandName().str().c_str()); in DoExecute()
935 GetCommandName().str().c_str()); in DoExecute()
/external/llvm-project/lldb/source/Target/
DLanguageRuntime.cpp285 parent->LoadSubCommand(command->GetCommandName().str().c_str(), command); in InitializeCommands()
/external/llvm-project/lldb/include/lldb/Interpreter/
DCommandObject.h133 llvm::StringRef GetCommandName() const;
/external/llvm-project/lldb/source/API/
DSBCommandInterpreter.cpp658 return (IsValid() ? ConstString(m_opaque_sp->GetCommandName()).AsCString() : nullptr); in GetName()