Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/lldb/source/Interpreter/
DCommandInterpreter.cpp603 m_command_dict[std::string(break_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
659 m_command_dict[std::string(tbreak_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
679 m_command_dict[std::string(attach_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
695 m_command_dict[std::string(down_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
710 m_command_dict[std::string(up_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
724 m_command_dict[std::string(display_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
739 m_command_dict[std::string(undisplay_regex_cmd_sp->GetCommandName())] = in LoadCommandDictionary()
758 m_command_dict[std::string(command_sp->GetCommandName())] = command_sp; in LoadCommandDictionary()
776 m_command_dict[std::string(command_sp->GetCommandName())] = command_sp; in LoadCommandDictionary()
801 m_command_dict[std::string(command_sp->GetCommandName())] = command_sp; in LoadCommandDictionary()
[all …]
DCommandObject.cpp62 syntax_str.PutCString(GetCommandName()); in GetSyntax()
80 llvm::StringRef CommandObject::GetCommandName() const { return m_cmd_name; } in GetCommandName() function in CommandObject
977 Args full_args(GetCommandName()); in Execute()
1008 std::string full_command(GetCommandName()); in Execute()
DCommandAlias.cpp142 llvm::StringRef command_name = m_underlying_command_sp->GetCommandName(); in GetAliasExpansion()
DOptions.cpp401 name = cmd->GetCommandName(); in GenerateOptionUsage()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Commands/
DCommandObjectCommands.cpp130 GetCommandName().str().c_str()); in DoExecute()
453 m_interpreter.GetCommandSPExact(cmd_obj.GetCommandName())) { in HandleAliasingRawCommand()
541 m_interpreter.GetCommandSPExact(cmd_obj->GetCommandName()); in HandleAliasingNormalCommand()
543 tmp_sp = m_interpreter.GetCommandSPExact(sub_cmd_obj->GetCommandName()); in HandleAliasingNormalCommand()
705 GetCommandName().str().c_str()); in DoExecute()
819 m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true); in IOHandlerInputComplete()
973 m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true); in AddRegexCommandToInterpreter()
DCommandObjectMultiword.cpp108 GetCommandName().str().c_str()); in Execute()
132 error_msg.append(std::string(GetCommandName())); in Execute()
DCommandObjectHelp.cpp156 sub_cmd_obj->GetCommandName().str().c_str()); in DoExecute()
DCommandObjectSource.cpp543 GetCommandName().str().c_str()); in DoExecute()
930 GetCommandName().str().c_str()); in DoExecute()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Target/
DLanguageRuntime.cpp304 parent->LoadSubCommand(command->GetCommandName().str().c_str(), command); in InitializeCommands()
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
DCommandObject.h133 llvm::StringRef GetCommandName() const;
/freebsd-12-stable/contrib/llvm-project/lldb/source/API/
DSBCommandInterpreter.cpp646 return (IsValid() ? ConstString(m_opaque_sp->GetCommandName()).AsCString() : nullptr); in GetName()