| /freebsd-13.1/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectMultiword.cpp | 32 CommandObject::CommandMap::iterator pos; in GetSubcommandSP() 62 CommandObject * 153 CommandObject::GenerateHelpText(output_stream); in GenerateHelpText() 223 CommandObject *sub_command_object = in GetRepeatCommand() 234 CommandObject::CommandMap::const_iterator pos; in AproposAllSubCommands() 266 return CommandObject::GetOptions(); in GetOptions() 273 return CommandObject::GetHelp(); in GetHelp() 280 return CommandObject::GetSyntax(); in GetSyntax() 287 return CommandObject::GetHelpLong(); in GetHelpLong() 291 const CommandObject *proxy_command = in IsRemovable() [all …]
|
| H A D | CommandObjectHelp.cpp | 77 CommandObject::CommandMap::iterator pos; in DoExecute() 78 CommandObject *cmd_obj; in DoExecute() 105 CommandObject *sub_cmd_obj = cmd_obj; in DoExecute() 119 CommandObject *found_cmd; in DoExecute() 183 CommandObject::LookupArgumentName(command_name); in DoExecute() 186 CommandObject::GetArgumentHelp(output_strm, arg_type, m_interpreter); in DoExecute() 207 CommandObject *cmd_obj = in HandleCompletion()
|
| H A D | CommandObjectTrace.h | 39 CommandObject *GetProxyCommandObject() override;
|
| H A D | CommandObjectWatchpoint.cpp | 155 CommandObject::AddIDsArgumentData(arg, eArgTypeWatchpointID, in CommandObjectWatchpointList() 280 CommandObject::AddIDsArgumentData(arg, eArgTypeWatchpointID, in CommandObjectWatchpointEnable() 356 CommandObject::AddIDsArgumentData(arg, eArgTypeWatchpointID, in CommandObjectWatchpointDisable() 438 CommandObject::AddIDsArgumentData(arg, eArgTypeWatchpointID, in CommandObjectWatchpointDelete() 562 CommandObject::AddIDsArgumentData(arg, eArgTypeWatchpointID, in CommandObjectWatchpointIgnore() 688 CommandObject::AddIDsArgumentData(arg, eArgTypeWatchpointID, in CommandObjectWatchpointModify()
|
| H A D | CommandObjectCommands.cpp | 422 CommandObject *cmd_obj = in DoExecute() 445 CommandObject &cmd_obj, in HandleAliasingRawCommand() 512 CommandObject *cmd_obj = command_obj_sp.get(); in HandleAliasingNormalCommand() 513 CommandObject *sub_cmd_obj = nullptr; in HandleAliasingNormalCommand() 611 CommandObject::CommandMap::iterator pos; in DoExecute() 612 CommandObject *cmd_obj; in DoExecute() 700 CommandObject::CommandMap::iterator pos; in DoExecute()
|
| H A D | CommandObjectTrace.cpp | 323 CommandObject *CommandObjectTraceProxy::GetProxyCommandObject() { in GetProxyCommandObject()
|
| H A D | CommandObjectBreakpoint.cpp | 803 CommandObject::AddIDsArgumentData(arg, eArgTypeBreakpointID, in CommandObjectBreakpointModify() 883 CommandObject::AddIDsArgumentData(arg, eArgTypeBreakpointID, in CommandObjectBreakpointEnable() 998 CommandObject::AddIDsArgumentData(arg, eArgTypeBreakpointID, in CommandObjectBreakpointDisable() 1378 CommandObject::AddIDsArgumentData(arg, eArgTypeBreakpointID, in CommandObjectBreakpointDelete() 2239 CommandObject::AddIDsArgumentData(arg, eArgTypeBreakpointID, in CommandObjectBreakpointWrite()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Interpreter/ |
| H A D | CommandObject.cpp | 41 CommandObject::CommandObject(CommandInterpreter &interpreter, in CommandObject() function in CommandObject 57 llvm::StringRef CommandObject::GetSyntax() { in GetSyntax() 98 Options *CommandObject::GetOptions() { in GetOptions() 267 void CommandObject::Cleanup() { in Cleanup() 358 CommandObject::CommandArgumentEntry * 366 const CommandObject::ArgumentTableEntry * 433 static CommandObject::CommandArgumentEntry 934 Target &CommandObject::GetDummyTarget() { in GetDummyTarget() 1036 CommandObject::ArgumentTableEntry CommandObject::g_arguments_data[] = { 1130 const CommandObject::ArgumentTableEntry *CommandObject::GetArgumentTable() { in GetArgumentTable() [all …]
|
| H A D | CommandAlias.cpp | 81 : CommandObject(interpreter, name, help, syntax, flags), in CommandAlias() 222 this->CommandObject::SetHelp(str); in SetHelp() 227 this->CommandObject::SetHelpLong(str); in SetHelpLong()
|
| H A D | CommandInterpreter.cpp | 1094 CommandObject * 1098 CommandObject *command_obj = in GetCommandObject() 1213 CommandObject::CommandMap::iterator pos = in RemoveUser() 1288 CommandObject *cmd_obj = nullptr; in GetCommandObjectForCommand() 1308 CommandObject *sub_cmd_obj = in GetCommandObjectForCommand() 1427 CommandObject *alias_cmd_obj = nullptr; in BuildAliasResult() 1832 CommandObject *cmd_obj = in HandleCompletionMatches() 1854 CommandObject *command_object = in HandleCompletionMatches() 3103 CommandObject * 3108 CommandObject *cmd_obj = nullptr; in ResolveCommandImpl() [all …]
|
| H A D | Options.cpp | 375 strm.Printf(" <%s>", CommandObject::GetArgumentName(opt_def.argument_type)); in PrintOption() 380 CommandObject::GetArgumentName(opt_def.argument_type)); in PrintOption() 390 void Options::GenerateOptionUsage(Stream &strm, CommandObject *cmd, in GenerateOptionUsage() 576 arg_name_str.Printf("<%s>", CommandObject::GetArgumentName(arg_type)); in GenerateOptionUsage() 764 const CommandObject::ArgumentTableEntry *arg_entry = in HandleOptionArgumentCompletion() 765 CommandObject::FindArgumentDataByType( in HandleOptionArgumentCompletion()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
| H A D | CommandObjectMultiword.h | 19 class CommandObjectMultiword : public CommandObject { 43 CommandObject *GetSubcommandObject(llvm::StringRef sub_cmd, 65 CommandObject::CommandMap &GetSubcommandDictionary() { in GetSubcommandDictionary() 69 CommandObject::CommandMap m_subcommand_dict; 73 class CommandObjectProxy : public CommandObject { 83 virtual CommandObject *GetProxyCommandObject() = 0; 102 CommandObject *GetSubcommandObject(llvm::StringRef sub_cmd,
|
| H A D | CommandInterpreter.h | 265 CommandObject *GetCommandObject(llvm::StringRef cmd, 292 CommandObject *BuildAliasResult(llvm::StringRef alias_name, 353 CommandObject *GetCommandObjectForCommand(llvm::StringRef &command_line); 419 void BuildAliasCommandArgs(CommandObject *alias_cmd_obj, 505 const CommandObject::CommandMap &GetUserCommands() const { in GetUserCommands() 509 const CommandObject::CommandMap &GetCommands() const { in GetCommands() 596 CommandObject *ResolveCommandImpl(std::string &command_line, 601 CommandObject::CommandMap &command_map); 633 CommandObject::CommandMap m_command_dict; // Stores basic built-in commands 636 CommandObject::CommandMap [all …]
|
| H A D | CommandObject.h | 67 class CommandObject { 112 CommandObject(CommandInterpreter &interpreter, llvm::StringRef name, 116 virtual ~CommandObject() = default; 162 virtual CommandObject *GetSubcommandObject(llvm::StringRef sub_cmd, 378 class CommandObjectParsed : public CommandObject { 383 : CommandObject(interpreter, name, help, syntax, flags) {} in CommandObject() function 395 class CommandObjectRaw : public CommandObject { 400 : CommandObject(interpreter, name, help, syntax, flags) {} in CommandObject() function
|
| H A D | CommandAlias.h | 20 class CommandAlias : public CommandObject {
|
| H A D | Options.h | 89 void GenerateOptionUsage(Stream &strm, CommandObject *cmd,
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/minidump/ |
| H A D | ProcessMinidump.h | 52 CommandObject *GetPluginCommandObject() override;
|
| H A D | ProcessMinidump.cpp | 1006 CommandObject *ProcessMinidump::GetPluginCommandObject() { in GetPluginCommandObject()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/ |
| H A D | LanguageRuntime.h | 65 static void InitializeCommands(CommandObject *parent);
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/API/ |
| H A D | SBCommandInterpreter.cpp | 530 return CommandObject::GetArgumentTypeAsCString(arg_type); in GetArgumentTypeAsCString() 539 return CommandObject::GetArgumentDescriptionAsCString(arg_type); in GetArgumentDescriptionAsCString() 561 CommandObject *cmd_obj = in SetCommandOverrideCallback()
|
| /freebsd-13.1/contrib/llvm-project/lldb/docs/design/ |
| H A D | overview.rst | 59 Every command is backed by a ``lldb_private::CommandObject`` or 65 ``lldb_private::CommandObject`` command line commands are the objects that
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Target/ |
| H A D | LanguageRuntime.cpp | 281 void LanguageRuntime::InitializeCommands(CommandObject *parent) { in InitializeCommands()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/ |
| H A D | lldb-forward.h | 52 class CommandObject; variable 303 typedef std::shared_ptr<lldb_private::CommandObject> CommandObjectSP;
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | ProcessGDBRemote.h | 77 CommandObject *GetPluginCommandObject() override;
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Expression/ |
| H A D | REPL.cpp | 584 CommandObject *cmd_obj = in RunLoop()
|