/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectMultiword.cpp | 25 : CommandObject(interpreter, name, help, syntax, flags), in CommandObjectMultiword() 54 CommandObject::CommandMap::iterator pos; in GetSubcommandSP() 75 CommandObject * 85 "tried to add a CommandObject from a different interpreter"); in LoadSubCommand() 104 "tried to add a CommandObject from a different interpreter"); in LoadUserSubcommand() 167 this->CommandObject::GenerateHelpText(result); in Execute() 184 CommandObject *sub_cmd_obj = GetSubcommandObject(sub_command, &matches); in Execute() 186 // Now call CommandObject::Execute to process options in `rest_of_line`. in Execute() 223 CommandObject::GenerateHelpText(output_stream); in GenerateHelpText() 262 CommandObject *cmd_ob in HandleCompletion() [all...] |
H A D | CommandObjectHelp.cpp | 67 CommandObject::CommandMap::iterator pos; in DoExecute() 68 CommandObject *cmd_obj; in DoExecute() 97 CommandObject *sub_cmd_obj = cmd_obj; in DoExecute() 111 CommandObject *found_cmd; in DoExecute() 175 CommandObject::LookupArgumentName(command_name); in DoExecute() 178 CommandObject::GetArgumentHelp(output_strm, arg_type, m_interpreter); in DoExecute() 197 CommandObject *cmd_obj = in HandleCompletion()
|
H A D | CommandObjectWatchpoint.cpp | 156 CommandObject::AddIDsArgumentData(eWatchpointArgs); in CommandObjectWatchpointList() 274 CommandObject::AddIDsArgumentData(eWatchpointArgs); in CommandObjectWatchpointEnable() 343 CommandObject::AddIDsArgumentData(eWatchpointArgs); in CommandObjectWatchpointDisable() 417 CommandObject::AddIDsArgumentData(eWatchpointArgs); in CommandObjectWatchpointDelete() 533 CommandObject::AddIDsArgumentData(eWatchpointArgs); in CommandObjectWatchpointIgnore() 651 CommandObject::AddIDsArgumentData(eWatchpointArgs); in CommandObjectWatchpointModify()
|
H A D | CommandObjectTrace.h | 39 CommandObject *GetProxyCommandObject() override;
|
H A D | CommandObjectRegister.cpp | 71 CommandObject::HandleArgumentCompletion(request, opt_element_vector); in HandleArgumentCompletion() 423 CommandObject::HandleArgumentCompletion(request, opt_element_vector); in HandleArgumentCompletion()
|
H A D | CommandObjectCommands.cpp | 437 CommandObject *cmd_obj = in DoExecute() 458 CommandObject &cmd_obj, in HandleAliasingRawCommand() 536 CommandObject *cmd_obj = command_obj_sp.get(); in HandleAliasingNormalCommand() 537 CommandObject *sub_cmd_obj = nullptr; in HandleAliasingNormalCommand() 623 CommandObject::CommandMap::iterator pos; in DoExecute() 624 CommandObject *cmd_obj; in DoExecute() 699 CommandObject::CommandMap::iterator pos; in DoExecute()
|
H A D | CommandObjectTrace.cpp | 414 CommandObject *CommandObjectTraceProxy::GetProxyCommandObject() { in GetProxyCommandObject()
|
H A D | CommandObjectBreakpoint.cpp | 820 CommandObject::AddIDsArgumentData(eBreakpointArgs); in CommandObjectBreakpointModify() 892 CommandObject::AddIDsArgumentData(eBreakpointArgs); in CommandObjectBreakpointEnable() 999 CommandObject::AddIDsArgumentData(eBreakpointArgs); in CommandObjectBreakpointDisable() 1356 CommandObject::AddIDsArgumentData(eBreakpointArgs); in CommandObjectBreakpointDelete() 2266 CommandObject::AddIDsArgumentData(eBreakpointArgs); in CommandObjectBreakpointWrite()
|
/freebsd/contrib/llvm-project/lldb/source/Interpreter/ |
H A D | CommandObject.cpp | 43 CommandObject::CommandObject(CommandInterpreter &interpreter, in CommandObject() function in CommandObject 53 Debugger &CommandObject::GetDebugger() { return m_interpreter.GetDebugger(); } in GetDebugger() 55 llvm::StringRef CommandObject::GetHelp() { return m_cmd_help_short; } in GetHelp() 57 llvm::StringRef CommandObject::GetHelpLong() { return m_cmd_help_long; } in GetHelpLong() 59 llvm::StringRef CommandObject::GetSyntax() { in GetSyntax() 82 llvm::StringRef CommandObject::GetCommandName() const { return m_cmd_name; } in GetCommandName() 84 void CommandObject::SetCommandName(llvm::StringRef name) { in SetCommandName() 88 void CommandObject::SetHelp(llvm::StringRef str) { in SetHelp() 92 void CommandObject::SetHelpLong(llvm::StringRef str) { in SetHelpLong() 96 void CommandObject::SetSyntax(llvm::StringRef str) { in SetSyntax() [all …]
|
H A D | CommandAlias.cpp | 15 #include "lldb/Interpreter/CommandObject.h" 83 : CommandObject(interpreter, name, help, syntax, flags), in CommandAlias() 227 this->CommandObject::SetHelp(str); in SetHelp() 232 this->CommandObject::SetHelpLong(str); in SetHelpLong()
|
H A D | CommandInterpreter.cpp | 1258 CommandObject * 1269 CommandObject *CommandInterpreter::GetUserCommandObject( in GetUserCommandObject() 1272 auto find_exact = [&](const CommandObject::CommandMap &map) { in GetUserCommandObject() 1275 return (CommandObject *)nullptr; in GetUserCommandObject() 1276 CommandObject *exact_cmd = found_elem->second.get(); in GetUserCommandObject() 1284 return (CommandObject *)nullptr; in GetUserCommandObject() 1287 CommandObject *exact_cmd = find_exact(GetUserCommands()); in GetUserCommandObject() 1394 CommandObject::CommandMap::iterator pos = in RemoveUser() 1404 CommandObject::CommandMap::iterator pos = in RemoveUserMultiword() 1421 CommandObject::CommandMap::const_iterator pos; in GetHelp() [all …]
|
H A D | Options.cpp | 380 strm.Printf(" <%s>", CommandObject::GetArgumentName(opt_def.argument_type)); in PrintOption() 385 CommandObject::GetArgumentName(opt_def.argument_type)); in PrintOption() 395 void Options::GenerateOptionUsage(Stream &strm, CommandObject &cmd, in GenerateOptionUsage() 709 const CommandObject::ArgumentTableEntry *arg_entry = in HandleOptionArgumentCompletion() 710 CommandObject::FindArgumentDataByType( in HandleOptionArgumentCompletion()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
H A D | CommandObjectMultiword.h | 12 #include "lldb/Interpreter/CommandObject.h" 20 class CommandObjectMultiword : public CommandObject { 52 CommandObject *GetSubcommandObject(llvm::StringRef sub_cmd, 69 CommandObject::CommandMap &GetSubcommandDictionary() { in GetSubcommandDictionary() 73 CommandObject::CommandMap m_subcommand_dict; 77 class CommandObjectProxy : public CommandObject { 87 virtual CommandObject *GetProxyCommandObject() = 0; 106 CommandObject *GetSubcommandObject(llvm::StringRef sub_cmd,
|
H A D | CommandInterpreter.h | 290 CommandObject *GetCommandObject(llvm::StringRef cmd, 294 CommandObject *GetUserCommandObject(llvm::StringRef cmd, 360 CommandObject *BuildAliasResult(llvm::StringRef alias_name, 422 CommandObject *GetCommandObjectForCommand(llvm::StringRef &command_line); 490 void BuildAliasCommandArgs(CommandObject *alias_cmd_obj, 598 const CommandObject::CommandMap &GetUserCommands() const { in GetUserCommands() 602 const CommandObject::CommandMap &GetUserMultiwordCommands() const { in GetUserMultiwordCommands() 606 const CommandObject::CommandMap &GetCommands() const { in GetCommands() 610 const CommandObject::CommandMap &GetAliases() const { return m_alias_dict; } in GetAliases() 661 void IncreaseCommandUsage(const CommandObject &cmd_obj) { in IncreaseCommandUsage() [all …]
|
H A D | CommandObject.h | 69 class CommandObject : public std::enable_shared_from_this<CommandObject> { 112 CommandObject(CommandInterpreter &interpreter, llvm::StringRef name, 116 virtual ~CommandObject() = default; 170 virtual CommandObject *GetSubcommandObject(llvm::StringRef sub_cmd, 414 class CommandObjectParsed : public CommandObject { 419 : CommandObject(interpreter, name, help, syntax, flags) {} in CommandObject() function 431 class CommandObjectRaw : public CommandObject { 436 : CommandObject(interpreter, name, help, syntax, flags) {} in CommandObject() function
|
H A D | CommandAlias.h | 14 #include "lldb/Interpreter/CommandObject.h" 20 class CommandAlias : public CommandObject {
|
H A D | CommandOptionArgumentTable.h | 214 static constexpr CommandObject::ArgumentTableEntry g_argument_table[] = { 319 sizeof(CommandObject::ArgumentTableEntry)) ==
|
H A D | Options.h | 90 void GenerateOptionUsage(Stream &strm, CommandObject &cmd,
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/minidump/ |
H A D | ProcessMinidump.h | 52 CommandObject *GetPluginCommandObject() override;
|
/freebsd/contrib/llvm-project/lldb/source/API/ |
H A D | SBCommandInterpreter.cpp | 524 return ConstString(CommandObject::GetArgumentTypeAsCString(arg_type)) in GetArgumentTypeAsCString() 532 return ConstString(CommandObject::GetArgumentDescriptionAsCString(arg_type)) in GetArgumentDescriptionAsCString() 551 CommandObject *cmd_obj = in SetCommandOverrideCallback()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
H A D | LanguageRuntime.h | 66 static void InitializeCommands(CommandObject *parent);
|
/freebsd/contrib/llvm-project/lldb/docs/design/ |
H A D | overview.rst |
|
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | LanguageRuntime.cpp | 280 void LanguageRuntime::InitializeCommands(CommandObject *parent) { in InitializeCommands()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/ |
H A D | lldb-forward.h | 52 class CommandObject; variable 330 typedef std::shared_ptr<lldb_private::CommandObject> CommandObjectSP;
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
H A D | ProcessGDBRemote.h | 79 CommandObject *GetPluginCommandObject() override;
|