reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

tools/lldb/include/lldb/Core/Debugger.h
   55 class CommandInterpreter;
tools/lldb/include/lldb/Core/PluginManager.h
   26 class CommandInterpreter;
tools/lldb/include/lldb/Core/UserSettingsController.h
   24 class CommandInterpreter;
tools/lldb/include/lldb/lldb-forward.h
   57 class CommandInterpreter;

References

tools/lldb/include/lldb/API/SBCommandInterpreter.h
  190       lldb_private::CommandInterpreter *interpreter_ptr =
  239   lldb_private::CommandInterpreter &ref();
  241   lldb_private::CommandInterpreter *get();
  243   void reset(lldb_private::CommandInterpreter *);
  248   lldb_private::CommandInterpreter *m_opaque_ptr;
tools/lldb/include/lldb/Core/Debugger.h
  149   CommandInterpreter &GetCommandInterpreter() {
  397   std::unique_ptr<CommandInterpreter> m_command_interpreter_up;
tools/lldb/include/lldb/Core/UserSettingsController.h
   65   virtual void DumpAllDescriptions(CommandInterpreter &interpreter,
tools/lldb/include/lldb/Interpreter/CommandAlias.h
   24   CommandAlias(CommandInterpreter &interpreter, lldb::CommandObjectSP cmd_sp,
tools/lldb/include/lldb/Interpreter/CommandCompletions.h
   29   typedef void (*CompletionCallback)(CommandInterpreter &interpreter,
   56       CommandInterpreter &interpreter, uint32_t completion_mask,
   60   static void DiskFiles(CommandInterpreter &interpreter,
   66   static void DiskDirectories(CommandInterpreter &interpreter,
   74   static void SourceFiles(CommandInterpreter &interpreter,
   77   static void Modules(CommandInterpreter &interpreter,
   80   static void Symbols(CommandInterpreter &interpreter,
   83   static void SettingsNames(CommandInterpreter &interpreter,
   86   static void PlatformPluginNames(CommandInterpreter &interpreter,
   90   static void ArchitectureNames(CommandInterpreter &interpreter,
   94   static void VariablePath(CommandInterpreter &interpreter,
  101     Completer(CommandInterpreter &interpreter, CompletionRequest &request);
  113     CommandInterpreter &m_interpreter;
  123     SourceFileCompleter(CommandInterpreter &interpreter,
  146     ModuleCompleter(CommandInterpreter &interpreter,
  167     SymbolCompleter(CommandInterpreter &interpreter,
tools/lldb/include/lldb/Interpreter/CommandObject.h
  111   CommandObject(CommandInterpreter &interpreter, llvm::StringRef name,
  123   CommandInterpreter &GetCommandInterpreter() { return m_interpreter; }
  206                               CommandInterpreter &interpreter);
  357   CommandInterpreter &m_interpreter;
  379   CommandObjectParsed(CommandInterpreter &interpreter, const char *name,
  396   CommandObjectRaw(CommandInterpreter &interpreter, llvm::StringRef name,
tools/lldb/include/lldb/Interpreter/CommandObjectMultiword.h
   25   CommandObjectMultiword(CommandInterpreter &interpreter, const char *name,
   75   CommandObjectProxy(CommandInterpreter &interpreter, const char *name,
tools/lldb/include/lldb/Interpreter/CommandObjectRegexCommand.h
   24   CommandObjectRegexCommand(CommandInterpreter &interpreter, llvm::StringRef name,
tools/lldb/include/lldb/Interpreter/OptionGroupPlatform.h
   37   lldb::PlatformSP CreatePlatformWithOptions(CommandInterpreter &interpreter,
tools/lldb/include/lldb/Interpreter/OptionValue.h
   96   virtual void AutoComplete(CommandInterpreter &interpreter,
tools/lldb/include/lldb/Interpreter/OptionValueArch.h
   58   void AutoComplete(CommandInterpreter &interpreter,
tools/lldb/include/lldb/Interpreter/OptionValueBoolean.h
   46   void AutoComplete(CommandInterpreter &interpreter,
tools/lldb/include/lldb/Interpreter/OptionValueEnumeration.h
   58   void AutoComplete(CommandInterpreter &interpreter,
tools/lldb/include/lldb/Interpreter/OptionValueFileSpec.h
   54   void AutoComplete(CommandInterpreter &interpreter,
tools/lldb/include/lldb/Interpreter/OptionValueFormatEntity.h
   41   void AutoComplete(CommandInterpreter &interpreter,
tools/lldb/include/lldb/Interpreter/OptionValueProperties.h
   54   virtual void DumpAllDescriptions(CommandInterpreter &interpreter,
tools/lldb/include/lldb/Interpreter/OptionValueUUID.h
   55   void AutoComplete(CommandInterpreter &interpreter,
tools/lldb/include/lldb/Interpreter/Options.h
  180                               CommandInterpreter &interpreter);
  194                                  CommandInterpreter &interpreter);
tools/lldb/include/lldb/Interpreter/Property.h
   63   void DumpDescription(CommandInterpreter &interpreter, Stream &strm,
tools/lldb/include/lldb/Target/Platform.h
  611   GetConnectionOptions(CommandInterpreter &interpreter) {
tools/lldb/include/lldb/Utility/ReproducerInstrumentation.h
   36 inline void stringify_append(llvm::raw_string_ostream &ss, const T *t) {
  201   template <typename T> T *GetObjectForIndex(unsigned idx) {
  249       typename std::conditional<std::is_fundamental<T>::value,
  535   template <typename T> unsigned GetIndexForObject(T *t) {
  563   template <typename T> void Serialize(T *t) {
  564     if (std::is_fundamental<T>::value) {
  575   template <typename T> void Serialize(T &t) {
  576     if (std::is_fundamental<T>::value) {
  577       m_stream.write(reinterpret_cast<const char *>(&t), sizeof(T));
tools/lldb/include/lldb/lldb-private-interfaces.h
   57     CommandInterpreter &interpreter);
tools/lldb/source/API/SBCommandInterpreter.cpp
  152   CommandPluginInterfaceImplementation(CommandInterpreter &interpreter,
  175 SBCommandInterpreter::SBCommandInterpreter(CommandInterpreter *interpreter)
  547 CommandInterpreter *SBCommandInterpreter::get() { return m_opaque_ptr; }
  549 CommandInterpreter &SBCommandInterpreter::ref() {
  555     lldb_private::CommandInterpreter *interpreter) {
  611   return CommandInterpreter::GetStaticBroadcasterClass().AsCString();
tools/lldb/source/API/SBDebugger.cpp
 1178     CommandInterpreter &interp = m_opaque_sp->GetCommandInterpreter();
tools/lldb/source/Commands/CommandCompletions.cpp
   54     CommandInterpreter &interpreter, uint32_t completion_mask,
   74 void CommandCompletions::SourceFiles(CommandInterpreter &interpreter,
  242 void CommandCompletions::DiskFiles(CommandInterpreter &interpreter,
  254 void CommandCompletions::DiskDirectories(CommandInterpreter &interpreter,
  266 void CommandCompletions::Modules(CommandInterpreter &interpreter,
  280 void CommandCompletions::Symbols(CommandInterpreter &interpreter,
  294 void CommandCompletions::SettingsNames(CommandInterpreter &interpreter,
  315 void CommandCompletions::PlatformPluginNames(CommandInterpreter &interpreter,
  322 void CommandCompletions::ArchitectureNames(CommandInterpreter &interpreter,
  328 void CommandCompletions::VariablePath(CommandInterpreter &interpreter,
  334 CommandCompletions::Completer::Completer(CommandInterpreter &interpreter,
  343     CommandInterpreter &interpreter, bool include_support_files,
  421     CommandInterpreter &interpreter, CompletionRequest &request)
  479     CommandInterpreter &interpreter, CompletionRequest &request)
tools/lldb/source/Commands/CommandObjectApropos.cpp
   22 CommandObjectApropos::CommandObjectApropos(CommandInterpreter &interpreter)
tools/lldb/source/Commands/CommandObjectApropos.h
   21   CommandObjectApropos(CommandInterpreter &interpreter);
tools/lldb/source/Commands/CommandObjectBreakpoint.cpp
  240   CommandObjectBreakpointSet(CommandInterpreter &interpreter)
  809   CommandObjectBreakpointModify(CommandInterpreter &interpreter)
  886   CommandObjectBreakpointEnable(CommandInterpreter &interpreter)
  970   CommandObjectBreakpointDisable(CommandInterpreter &interpreter)
 1082   CommandObjectBreakpointList(CommandInterpreter &interpreter)
 1231   CommandObjectBreakpointClear(CommandInterpreter &interpreter)
 1371   CommandObjectBreakpointDelete(CommandInterpreter &interpreter)
 1636   CommandObjectBreakpointNameConfigure(CommandInterpreter &interpreter)
 1742   CommandObjectBreakpointNameAdd(CommandInterpreter &interpreter)
 1820   CommandObjectBreakpointNameDelete(CommandInterpreter &interpreter)
 1897   CommandObjectBreakpointNameList(CommandInterpreter &interpreter)
 1977   CommandObjectBreakpointName(CommandInterpreter &interpreter)
 2008   CommandObjectBreakpointRead(CommandInterpreter &interpreter)
 2125   CommandObjectBreakpointWrite(CommandInterpreter &interpreter)
 2222     CommandInterpreter &interpreter)
tools/lldb/source/Commands/CommandObjectBreakpoint.h
   30   CommandObjectMultiwordBreakpoint(CommandInterpreter &interpreter);
tools/lldb/source/Commands/CommandObjectBreakpointCommand.cpp
   61   CommandObjectBreakpointCommandAdd(CommandInterpreter &interpreter)
  473   CommandObjectBreakpointCommandDelete(CommandInterpreter &interpreter)
  593   CommandObjectBreakpointCommandList(CommandInterpreter &interpreter)
  703     CommandInterpreter &interpreter)
tools/lldb/source/Commands/CommandObjectBreakpointCommand.h
   26   CommandObjectBreakpointCommand(CommandInterpreter &interpreter);
tools/lldb/source/Commands/CommandObjectCommands.cpp
   39   CommandObjectCommandsHistory(CommandInterpreter &interpreter)
  188   CommandObjectCommandsSource(CommandInterpreter &interpreter)
  390   CommandObjectCommandsAlias(CommandInterpreter &interpreter)
  750   CommandObjectCommandsUnalias(CommandInterpreter &interpreter)
  831   CommandObjectCommandsDelete(CommandInterpreter &interpreter)
  901   CommandObjectCommandsAddRegex(CommandInterpreter &interpreter)
 1197   CommandObjectPythonFunction(CommandInterpreter &interpreter, std::string name,
 1271   CommandObjectScriptingObject(CommandInterpreter &interpreter,
 1362   CommandObjectCommandsScriptImport(CommandInterpreter &interpreter)
 1501   CommandObjectCommandsScriptAdd(CommandInterpreter &interpreter)
 1721   CommandObjectCommandsScriptList(CommandInterpreter &interpreter)
 1734     m_interpreter.GetHelp(result, CommandInterpreter::eCommandTypesUserDef);
 1746   CommandObjectCommandsScriptClear(CommandInterpreter &interpreter)
 1772   CommandObjectCommandsScriptDelete(CommandInterpreter &interpreter)
 1822   CommandObjectMultiwordCommandsScript(CommandInterpreter &interpreter)
 1851     CommandInterpreter &interpreter)
tools/lldb/source/Commands/CommandObjectCommands.h
   23   CommandObjectMultiwordCommands(CommandInterpreter &interpreter);
tools/lldb/source/Commands/CommandObjectDisassemble.cpp
  209     CommandInterpreter &interpreter)
tools/lldb/source/Commands/CommandObjectDisassemble.h
   67   CommandObjectDisassemble(CommandInterpreter &interpreter);
tools/lldb/source/Commands/CommandObjectExpression.cpp
  204     CommandInterpreter &interpreter)
tools/lldb/source/Commands/CommandObjectExpression.h
   51   CommandObjectExpression(CommandInterpreter &interpreter);
tools/lldb/source/Commands/CommandObjectFrame.cpp
  117   CommandObjectFrameDiagnose(CommandInterpreter &interpreter)
  211   CommandObjectFrameInfo(CommandInterpreter &interpreter)
  277   CommandObjectFrameSelect(CommandInterpreter &interpreter)
  400   CommandObjectFrameVariable(CommandInterpreter &interpreter)
  797   CommandObjectFrameRecognizerAdd(CommandInterpreter &interpreter)
  905   CommandObjectFrameRecognizerClear(CommandInterpreter &interpreter)
  921   CommandObjectFrameRecognizerDelete(CommandInterpreter &interpreter)
  961   CommandObjectFrameRecognizerList(CommandInterpreter &interpreter)
  994   CommandObjectFrameRecognizerInfo(CommandInterpreter &interpreter)
 1065   CommandObjectFrameRecognizer(CommandInterpreter &interpreter)
 1095     CommandInterpreter &interpreter)
tools/lldb/source/Commands/CommandObjectFrame.h
   21   CommandObjectMultiwordFrame(CommandInterpreter &interpreter);
tools/lldb/source/Commands/CommandObjectGUI.cpp
   20 CommandObjectGUI::CommandObjectGUI(CommandInterpreter &interpreter)
tools/lldb/source/Commands/CommandObjectGUI.h
   20   CommandObjectGUI(CommandInterpreter &interpreter);
tools/lldb/source/Commands/CommandObjectHelp.cpp
   45 CommandObjectHelp::CommandObjectHelp(CommandInterpreter &interpreter)
   85     uint32_t cmd_types = CommandInterpreter::eCommandTypesBuiltin;
   87       cmd_types |= CommandInterpreter::eCommandTypesAliases;
   89       cmd_types |= CommandInterpreter::eCommandTypesUserDef;
   91       cmd_types |= CommandInterpreter::eCommandTypesHidden;
tools/lldb/source/Commands/CommandObjectHelp.h
   22   CommandObjectHelp(CommandInterpreter &interpreter);
tools/lldb/source/Commands/CommandObjectLanguage.cpp
   22 CommandObjectLanguage::CommandObjectLanguage(CommandInterpreter &interpreter)
tools/lldb/source/Commands/CommandObjectLanguage.h
   20   CommandObjectLanguage(CommandInterpreter &interpreter);
tools/lldb/source/Commands/CommandObjectLog.cpp
   55   CommandObjectLogEnable(CommandInterpreter &interpreter)
  197   CommandObjectLogDisable(CommandInterpreter &interpreter)
  262   CommandObjectLogList(CommandInterpreter &interpreter)
  314   CommandObjectLogTimer(CommandInterpreter &interpreter)
  376 CommandObjectLog::CommandObjectLog(CommandInterpreter &interpreter)
tools/lldb/source/Commands/CommandObjectLog.h
   24   CommandObjectLog(CommandInterpreter &interpreter);
tools/lldb/source/Commands/CommandObjectMemory.cpp
  289   CommandObjectMemoryRead(CommandInterpreter &interpreter)
  958   CommandObjectMemoryFind(CommandInterpreter &interpreter)
 1243   CommandObjectMemoryWrite(CommandInterpreter &interpreter)
 1599   CommandObjectMemoryHistory(CommandInterpreter &interpreter)
 1681   CommandObjectMemoryRegion(CommandInterpreter &interpreter)
 1769 CommandObjectMemory::CommandObjectMemory(CommandInterpreter &interpreter)
tools/lldb/source/Commands/CommandObjectMemory.h
   18   CommandObjectMemory(CommandInterpreter &interpreter);
tools/lldb/source/Commands/CommandObjectMultiword.cpp
   20 CommandObjectMultiword::CommandObjectMultiword(CommandInterpreter &interpreter,
  259 CommandObjectProxy::CommandObjectProxy(CommandInterpreter &interpreter,
tools/lldb/source/Commands/CommandObjectPlatform.cpp
  145   CommandObjectPlatformSelect(CommandInterpreter &interpreter)
  206   CommandObjectPlatformList(CommandInterpreter &interpreter)
  247   CommandObjectPlatformStatus(CommandInterpreter &interpreter)
  280   CommandObjectPlatformConnect(CommandInterpreter &interpreter)
  332   CommandObjectPlatformDisconnect(CommandInterpreter &interpreter)
  392   CommandObjectPlatformSettings(CommandInterpreter &interpreter)
  435   CommandObjectPlatformMkDir(CommandInterpreter &interpreter)
  485   CommandObjectPlatformFOpen(CommandInterpreter &interpreter)
  540   CommandObjectPlatformFClose(CommandInterpreter &interpreter)
  578   CommandObjectPlatformFRead(CommandInterpreter &interpreter)
  665   CommandObjectPlatformFWrite(CommandInterpreter &interpreter)
  745   CommandObjectPlatformFile(CommandInterpreter &interpreter)
  770   CommandObjectPlatformGetFile(CommandInterpreter &interpreter)
  845   CommandObjectPlatformGetSize(CommandInterpreter &interpreter)
  909   CommandObjectPlatformPutFile(CommandInterpreter &interpreter)
  946   CommandObjectPlatformProcessLaunch(CommandInterpreter &interpreter)
 1038   CommandObjectPlatformProcessList(CommandInterpreter &interpreter)
 1301   CommandObjectPlatformProcessInfo(CommandInterpreter &interpreter)
 1441         int opt_element_index, CommandInterpreter &interpreter) override {
 1488   CommandObjectPlatformProcessAttach(CommandInterpreter &interpreter)
 1527   CommandObjectPlatformProcess(CommandInterpreter &interpreter)
 1595   CommandObjectPlatformShell(CommandInterpreter &interpreter)
 1673   CommandObjectPlatformInstall(CommandInterpreter &interpreter)
 1715 CommandObjectPlatform::CommandObjectPlatform(CommandInterpreter &interpreter)
tools/lldb/source/Commands/CommandObjectPlatform.h
   21   CommandObjectPlatform(CommandInterpreter &interpreter);
tools/lldb/source/Commands/CommandObjectPlugin.cpp
   19   CommandObjectPluginLoad(CommandInterpreter &interpreter)
   74 CommandObjectPlugin::CommandObjectPlugin(CommandInterpreter &interpreter)
tools/lldb/source/Commands/CommandObjectPlugin.h
   21   CommandObjectPlugin(CommandInterpreter &interpreter);
tools/lldb/source/Commands/CommandObjectProcess.cpp
   36   CommandObjectProcessLaunchOrAttach(CommandInterpreter &interpreter,
  107   CommandObjectProcessLaunch(CommandInterpreter &interpreter)
  325         int opt_element_index, CommandInterpreter &interpreter) override {
  365   CommandObjectProcessAttach(CommandInterpreter &interpreter)
  499   CommandObjectProcessContinue(CommandInterpreter &interpreter)
  699   CommandObjectProcessDetach(CommandInterpreter &interpreter)
  785   CommandObjectProcessConnect(CommandInterpreter &interpreter)
  841   CommandObjectProcessPlugin(CommandInterpreter &interpreter)
  905   CommandObjectProcessLoad(CommandInterpreter &interpreter)
  970   CommandObjectProcessUnload(CommandInterpreter &interpreter)
 1016   CommandObjectProcessSignal(CommandInterpreter &interpreter)
 1081   CommandObjectProcessInterrupt(CommandInterpreter &interpreter)
 1123   CommandObjectProcessKill(CommandInterpreter &interpreter)
 1164   CommandObjectProcessSaveCore(CommandInterpreter &interpreter)
 1208   CommandObjectProcessStatus(CommandInterpreter &interpreter)
 1287   CommandObjectProcessHandle(CommandInterpreter &interpreter)
 1479     CommandInterpreter &interpreter)
tools/lldb/source/Commands/CommandObjectProcess.h
   20   CommandObjectMultiwordProcess(CommandInterpreter &interpreter);
tools/lldb/source/Commands/CommandObjectQuit.cpp
   21 CommandObjectQuit::CommandObjectQuit(CommandInterpreter &interpreter)
  103       CommandInterpreter::eBroadcastBitQuitCommandReceived;
tools/lldb/source/Commands/CommandObjectQuit.h
   20   CommandObjectQuit(CommandInterpreter &interpreter);
tools/lldb/source/Commands/CommandObjectRegister.cpp
   40   CommandObjectRegisterRead(CommandInterpreter &interpreter)
  294   CommandObjectRegisterWrite(CommandInterpreter &interpreter)
  385 CommandObjectRegister::CommandObjectRegister(CommandInterpreter &interpreter)
tools/lldb/source/Commands/CommandObjectRegister.h
   21   CommandObjectRegister(CommandInterpreter &interpreter);
tools/lldb/source/Commands/CommandObjectReproducer.cpp
   76   CommandObjectReproducerGenerate(CommandInterpreter &interpreter)
  120   CommandObjectReproducerStatus(CommandInterpreter &interpreter)
  162   CommandObjectReproducerDump(CommandInterpreter &interpreter)
  363     CommandInterpreter &interpreter)
tools/lldb/source/Commands/CommandObjectReproducer.h
   21   CommandObjectReproducer(CommandInterpreter &interpreter);
tools/lldb/source/Commands/CommandObjectSettings.cpp
   28   CommandObjectSettingsSet(CommandInterpreter &interpreter)
  246   CommandObjectSettingsShow(CommandInterpreter &interpreter)
  307   CommandObjectSettingsWrite(CommandInterpreter &interpreter)
  424   CommandObjectSettingsRead(CommandInterpreter &interpreter)
  492   CommandObjectSettingsList(CommandInterpreter &interpreter)
  566   CommandObjectSettingsRemove(CommandInterpreter &interpreter)
  663   CommandObjectSettingsReplace(CommandInterpreter &interpreter)
  761   CommandObjectSettingsInsertBefore(CommandInterpreter &interpreter)
  861   CommandObjectSettingsInsertAfter(CommandInterpreter &interpreter)
  960   CommandObjectSettingsAppend(CommandInterpreter &interpreter)
 1050   CommandObjectSettingsClear(CommandInterpreter &interpreter)
 1115     CommandInterpreter &interpreter)
tools/lldb/source/Commands/CommandObjectSettings.h
   22   CommandObjectMultiwordSettings(CommandInterpreter &interpreter);
tools/lldb/source/Commands/CommandObjectSource.cpp
  118   CommandObjectSourceInfo(CommandInterpreter &interpreter)
  721   CommandObjectSourceList(CommandInterpreter &interpreter)
 1267     CommandInterpreter &interpreter)
tools/lldb/source/Commands/CommandObjectSource.h
   23   CommandObjectMultiwordSource(CommandInterpreter &interpreter);
tools/lldb/source/Commands/CommandObjectStats.cpp
   20   CommandObjectStatsEnable(CommandInterpreter &interpreter)
   45   CommandObjectStatsDisable(CommandInterpreter &interpreter)
   70   CommandObjectStatsDump(CommandInterpreter &interpreter)
   94 CommandObjectStats::CommandObjectStats(CommandInterpreter &interpreter)
tools/lldb/source/Commands/CommandObjectStats.h
   18   CommandObjectStats(CommandInterpreter &interpreter);
tools/lldb/source/Commands/CommandObjectTarget.cpp
  214   CommandObjectTargetCreate(CommandInterpreter &interpreter)
  486   CommandObjectTargetList(CommandInterpreter &interpreter)
  519   CommandObjectTargetSelect(CommandInterpreter &interpreter)
  582   CommandObjectTargetDelete(CommandInterpreter &interpreter)
  696   CommandObjectTargetVariable(CommandInterpreter &interpreter)
 1028   CommandObjectTargetModulesSearchPathsAdd(CommandInterpreter &interpreter)
 1101   CommandObjectTargetModulesSearchPathsClear(CommandInterpreter &interpreter)
 1124   CommandObjectTargetModulesSearchPathsInsert(CommandInterpreter &interpreter)
 1220   CommandObjectTargetModulesSearchPathsList(CommandInterpreter &interpreter)
 1248   CommandObjectTargetModulesSearchPathsQuery(CommandInterpreter &interpreter)
 1317 static uint32_t DumpCompileUnitLineTable(CommandInterpreter &interpreter,
 1422 static void DumpModuleSymtab(CommandInterpreter &interpreter, Stream &strm,
 1431 static void DumpModuleSections(CommandInterpreter &interpreter, Stream &strm,
 1479 static bool LookupAddressInModule(CommandInterpreter &interpreter, Stream &strm,
 1529 static uint32_t LookupSymbolInModule(CommandInterpreter &interpreter,
 1593 static size_t LookupFunctionInModule(CommandInterpreter &interpreter,
 1626 static size_t LookupTypeInModule(CommandInterpreter &interpreter, Stream &strm,
 1673 static size_t LookupTypeHere(CommandInterpreter &interpreter, Stream &strm,
 1716 static uint32_t LookupFileAndLineInModule(CommandInterpreter &interpreter,
 1795   CommandObjectTargetModulesModuleAutoComplete(CommandInterpreter &interpreter,
 1836       CommandInterpreter &interpreter, const char *name, const char *help,
 1870   CommandObjectTargetModulesDumpObjfile(CommandInterpreter &interpreter)
 1950   CommandObjectTargetModulesDumpSymtab(CommandInterpreter &interpreter)
 2081   CommandObjectTargetModulesDumpSections(CommandInterpreter &interpreter)
 2167   CommandObjectTargetModulesDumpClangAST(CommandInterpreter &interpreter)
 2238   CommandObjectTargetModulesDumpSymfile(CommandInterpreter &interpreter)
 2322   CommandObjectTargetModulesDumpLineTable(CommandInterpreter &interpreter)
 2420   CommandObjectTargetModulesDump(CommandInterpreter &interpreter)
 2453   CommandObjectTargetModulesAdd(CommandInterpreter &interpreter)
 2607   CommandObjectTargetModulesLoad(CommandInterpreter &interpreter)
 2939   CommandObjectTargetModulesList(CommandInterpreter &interpreter)
 3306   CommandObjectTargetModulesShowUnwind(CommandInterpreter &interpreter)
 3690   CommandObjectTargetModulesLookup(CommandInterpreter &interpreter)
 3715   bool LookupHere(CommandInterpreter &interpreter, CommandReturnObject &result,
 3757   bool LookupInModule(CommandInterpreter &interpreter, Module *module,
 3928   CommandObjectTargetModulesImageSearchPaths(CommandInterpreter &interpreter)
 3961   CommandObjectTargetModules(CommandInterpreter &interpreter)
 3995   CommandObjectTargetSymbolsAdd(CommandInterpreter &interpreter)
 4385   CommandObjectTargetSymbols(CommandInterpreter &interpreter)
 4561   CommandObjectTargetStopHookAdd(CommandInterpreter &interpreter)
 4715   CommandObjectTargetStopHookDelete(CommandInterpreter &interpreter)
 4765   CommandObjectTargetStopHookEnableDisable(CommandInterpreter &interpreter,
 4815   CommandObjectTargetStopHookList(CommandInterpreter &interpreter)
 4849   CommandObjectMultiwordTargetStopHooks(CommandInterpreter &interpreter)
 4879     CommandInterpreter &interpreter)
tools/lldb/source/Commands/CommandObjectTarget.h
   21   CommandObjectMultiwordTarget(CommandInterpreter &interpreter);
tools/lldb/source/Commands/CommandObjectThread.cpp
   79   CommandObjectIterateOverThreads(CommandInterpreter &interpreter,
  306   CommandObjectThreadBacktrace(CommandInterpreter &interpreter)
  522   CommandObjectThreadStepWithTypeAndScope(CommandInterpreter &interpreter,
  803   CommandObjectThreadContinue(CommandInterpreter &interpreter)
 1062   CommandObjectThreadUntil(CommandInterpreter &interpreter)
 1299   CommandObjectThreadSelect(CommandInterpreter &interpreter)
 1360   CommandObjectThreadList(CommandInterpreter &interpreter)
 1433   CommandObjectThreadInfo(CommandInterpreter &interpreter)
 1480   CommandObjectThreadException(CommandInterpreter &interpreter)
 1572   CommandObjectThreadReturn(CommandInterpreter &interpreter)
 1752   CommandObjectThreadJump(CommandInterpreter &interpreter)
 1877   CommandObjectThreadPlanList(CommandInterpreter &interpreter)
 1920   CommandObjectThreadPlanDiscard(CommandInterpreter &interpreter)
 1992   CommandObjectMultiwordThreadPlan(CommandInterpreter &interpreter)
 2010     CommandInterpreter &interpreter)
tools/lldb/source/Commands/CommandObjectThread.h
   18   CommandObjectMultiwordThread(CommandInterpreter &interpreter);
tools/lldb/source/Commands/CommandObjectType.cpp
  106     CommandOptions(CommandInterpreter &interpreter) : Options() {}
  142   CommandObjectTypeSummaryAdd(CommandInterpreter &interpreter);
  484   CommandObjectTypeSynthAdd(CommandInterpreter &interpreter);
  572   CommandObjectTypeFormatAdd(CommandInterpreter &interpreter)
  765   CommandObjectTypeFormatterDelete(CommandInterpreter &interpreter,
  889   CommandObjectTypeFormatterClear(CommandInterpreter &interpreter,
  931   CommandObjectTypeFormatDelete(CommandInterpreter &interpreter)
  945   CommandObjectTypeFormatClear(CommandInterpreter &interpreter)
 1009   CommandObjectTypeFormatterList(CommandInterpreter &interpreter,
 1164   CommandObjectTypeFormatList(CommandInterpreter &interpreter)
 1465     CommandInterpreter &interpreter)
 1649   CommandObjectTypeSummaryDelete(CommandInterpreter &interpreter)
 1667   CommandObjectTypeSummaryClear(CommandInterpreter &interpreter)
 1684   CommandObjectTypeSummaryList(CommandInterpreter &interpreter)
 1758   CommandObjectTypeCategoryDefine(CommandInterpreter &interpreter)
 1854   CommandObjectTypeCategoryEnable(CommandInterpreter &interpreter)
 1917   CommandObjectTypeCategoryDelete(CommandInterpreter &interpreter)
 2021   CommandObjectTypeCategoryDisable(CommandInterpreter &interpreter)
 2079   CommandObjectTypeCategoryList(CommandInterpreter &interpreter)
 2149   CommandObjectTypeFilterList(CommandInterpreter &interpreter)
 2161   CommandObjectTypeSynthList(CommandInterpreter &interpreter)
 2173   CommandObjectTypeFilterDelete(CommandInterpreter &interpreter)
 2188   CommandObjectTypeSynthDelete(CommandInterpreter &interpreter)
 2204   CommandObjectTypeFilterClear(CommandInterpreter &interpreter)
 2216   CommandObjectTypeSynthClear(CommandInterpreter &interpreter)
 2317     CommandInterpreter &interpreter)
 2502   CommandObjectTypeFilterAdd(CommandInterpreter &interpreter)
 2692   CommandObjectTypeLookup(CommandInterpreter &interpreter)
 2828   CommandObjectFormatterInfo(CommandInterpreter &interpreter,
 2902   CommandObjectTypeFormat(CommandInterpreter &interpreter)
 2930   CommandObjectTypeSynth(CommandInterpreter &interpreter)
 2959   CommandObjectTypeFilter(CommandInterpreter &interpreter)
 2978   CommandObjectTypeCategory(CommandInterpreter &interpreter)
 3003   CommandObjectTypeSummary(CommandInterpreter &interpreter)
 3029 CommandObjectType::CommandObjectType(CommandInterpreter &interpreter)
tools/lldb/source/Commands/CommandObjectType.h
   22   CommandObjectType(CommandInterpreter &interpreter);
tools/lldb/source/Commands/CommandObjectVersion.cpp
   20 CommandObjectVersion::CommandObjectVersion(CommandInterpreter &interpreter)
tools/lldb/source/Commands/CommandObjectVersion.h
   20   CommandObjectVersion(CommandInterpreter &interpreter);
tools/lldb/source/Commands/CommandObjectWatchpoint.cpp
  151   CommandObjectWatchpointList(CommandInterpreter &interpreter)
  282   CommandObjectWatchpointEnable(CommandInterpreter &interpreter)
  351   CommandObjectWatchpointDisable(CommandInterpreter &interpreter)
  424   CommandObjectWatchpointDelete(CommandInterpreter &interpreter)
  501   CommandObjectWatchpointIgnore(CommandInterpreter &interpreter)
  617   CommandObjectWatchpointModify(CommandInterpreter &interpreter)
  735   CommandObjectWatchpointSetVariable(CommandInterpreter &interpreter)
  923   CommandObjectWatchpointSetExpression(CommandInterpreter &interpreter)
 1089   CommandObjectWatchpointSet(CommandInterpreter &interpreter)
 1109     CommandInterpreter &interpreter)
tools/lldb/source/Commands/CommandObjectWatchpoint.h
   23   CommandObjectMultiwordWatchpoint(CommandInterpreter &interpreter);
tools/lldb/source/Commands/CommandObjectWatchpointCommand.cpp
   58   CommandObjectWatchpointCommandAdd(CommandInterpreter &interpreter)
  479   CommandObjectWatchpointCommandDelete(CommandInterpreter &interpreter)
  550   CommandObjectWatchpointCommandList(CommandInterpreter &interpreter)
  640     CommandInterpreter &interpreter)
tools/lldb/source/Commands/CommandObjectWatchpointCommand.h
   24   CommandObjectWatchpointCommand(CommandInterpreter &interpreter);
tools/lldb/source/Core/Debugger.cpp
  287           CommandInterpreter::eBroadcastBitResetPrompt, bytes.release());
  710           std::make_unique<CommandInterpreter>(*this, false)),
 1423       CommandInterpreter::eBroadcastBitQuitCommandReceived |
 1424           CommandInterpreter::eBroadcastBitAsynchronousOutputData |
 1425           CommandInterpreter::eBroadcastBitAsynchronousErrorData);
 1451                 CommandInterpreter::eBroadcastBitQuitCommandReceived) {
 1454                        CommandInterpreter::eBroadcastBitAsynchronousErrorData) {
 1464             } else if (event_type & CommandInterpreter::
 1534         CommandInterpreter::eBroadcastBitQuitCommandReceived);
tools/lldb/source/Expression/REPL.cpp
  194     CommandInterpreter &ci = debugger.GetCommandInterpreter();
tools/lldb/source/Interpreter/CommandAlias.cpp
   76 CommandAlias::CommandAlias(CommandInterpreter &interpreter,
tools/lldb/source/Interpreter/CommandInterpreter.cpp
  110                   CommandInterpreter::GetStaticBroadcasterClass().AsCString()),
tools/lldb/source/Interpreter/CommandObject.cpp
   40 CommandObject::CommandObject(CommandInterpreter &interpreter, llvm::StringRef name,
  362                                     CommandInterpreter &interpreter) {
  811   CommandInterpreter &interpreter = GetCommandInterpreter();
  837   CommandInterpreter &interpreter = GetCommandInterpreter();
tools/lldb/source/Interpreter/CommandObjectRegexCommand.cpp
   19     CommandInterpreter &interpreter, llvm::StringRef name, llvm::StringRef help,
tools/lldb/source/Interpreter/CommandObjectScript.cpp
   26 CommandObjectScript::CommandObjectScript(CommandInterpreter &interpreter,
tools/lldb/source/Interpreter/CommandObjectScript.h
   20   CommandObjectScript(CommandInterpreter &interpreter,
tools/lldb/source/Interpreter/OptionGroupPlatform.cpp
   19     CommandInterpreter &interpreter, const ArchSpec &arch, bool make_selected,
tools/lldb/source/Interpreter/OptionValueArch.cpp
   71 void OptionValueArch::AutoComplete(CommandInterpreter &interpreter,
tools/lldb/source/Interpreter/OptionValueFileSpec.cpp
  102 void OptionValueFileSpec::AutoComplete(CommandInterpreter &interpreter,
tools/lldb/source/Interpreter/OptionValueFormatEntity.cpp
  119 void OptionValueFormatEntity::AutoComplete(CommandInterpreter &interpreter,
tools/lldb/source/Interpreter/OptionValueUUID.cpp
   65 void OptionValueUUID::AutoComplete(CommandInterpreter &interpreter,
tools/lldb/source/Interpreter/Options.cpp
  647                                      CommandInterpreter &interpreter) {
  742     int opt_element_index, CommandInterpreter &interpreter) {
tools/lldb/source/Interpreter/Property.cpp
  264 void Property::DumpDescription(CommandInterpreter &interpreter, Stream &strm,
tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp
 3997   CommandObjectRenderScriptRuntimeModuleDump(CommandInterpreter &interpreter)
 4018   CommandObjectRenderScriptRuntimeModule(CommandInterpreter &interpreter)
 4032   CommandObjectRenderScriptRuntimeKernelList(CommandInterpreter &interpreter)
 4068       CommandInterpreter &interpreter)
 4222       CommandInterpreter &interpreter)
 4316       CommandInterpreter &interpreter)
 4369       CommandInterpreter &interpreter)
 4387       CommandInterpreter &interpreter)
 4420       CommandInterpreter &interpreter)
 4440   CommandObjectRenderScriptRuntimeKernel(CommandInterpreter &interpreter)
 4462   CommandObjectRenderScriptRuntimeContextDump(CommandInterpreter &interpreter)
 4488   CommandObjectRenderScriptRuntimeContext(CommandInterpreter &interpreter)
 4504       CommandInterpreter &interpreter)
 4632       CommandInterpreter &interpreter)
 4695       CommandInterpreter &interpreter)
 4746       CommandInterpreter &interpreter)
 4797       CommandInterpreter &interpreter)
 4827   CommandObjectRenderScriptRuntimeAllocation(CommandInterpreter &interpreter)
 4858   CommandObjectRenderScriptRuntimeStatus(CommandInterpreter &interpreter)
 4880   CommandObjectRenderScriptRuntimeReduction(CommandInterpreter &interpreter)
 4894   CommandObjectRenderScriptRuntime(CommandInterpreter &interpreter)
 4936     lldb_private::CommandInterpreter &interpreter) {
tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.h
  314   GetCommandObject(CommandInterpreter &interpreter);
tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptScriptGroup.cpp
   37       CommandInterpreter &interpreter)
   76       CommandInterpreter &interpreter)
   94   CommandObjectRenderScriptScriptGroupList(CommandInterpreter &interpreter)
  140   CommandObjectRenderScriptScriptGroup(CommandInterpreter &interpreter)
  158     lldb_private::CommandInterpreter &interpreter) {
tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptScriptGroup.h
   15     lldb_private::CommandInterpreter &interpreter);
tools/lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.h
   27   GetConnectionOptions(lldb_private::CommandInterpreter &interpreter) override;
   91   std::map<lldb_private::CommandInterpreter *,
tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
 5117   CommandObjectProcessGDBRemoteSpeedTest(CommandInterpreter &interpreter)
 5194   CommandObjectProcessGDBRemotePacketHistory(CommandInterpreter &interpreter)
 5223   CommandObjectProcessGDBRemotePacketXferSize(CommandInterpreter &interpreter)
 5262   CommandObjectProcessGDBRemotePacketSend(CommandInterpreter &interpreter)
 5314   CommandObjectProcessGDBRemotePacketMonitor(CommandInterpreter &interpreter)
 5362   CommandObjectProcessGDBRemotePacket(CommandInterpreter &interpreter)
 5391   CommandObjectMultiwordProcessGDBRemote(CommandInterpreter &interpreter)
tools/lldb/source/Plugins/Process/minidump/ProcessMinidump.cpp
  672   CommandObjectProcessMinidumpDump(CommandInterpreter &interpreter)
  875   CommandObjectMultiwordProcessMinidump(CommandInterpreter &interpreter)
tools/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.cpp
  745   EnableCommand(CommandInterpreter &interpreter, bool enable, const char *name,
  863   StatusCommand(CommandInterpreter &interpreter)
  939   BaseCommand(CommandInterpreter &interpreter)
 1026 bool RunEnableCommand(CommandInterpreter &interpreter) {
 1370   auto &interpreter = debugger.GetCommandInterpreter();
 1831     auto &interpreter = debugger_sp->GetCommandInterpreter();
tools/lldb/source/Target/StructuredDataPlugin.cpp
   21   CommandStructuredData(CommandInterpreter &interpreter)
   47   auto &interpreter = debugger.GetCommandInterpreter();
tools/lldb/source/Target/TargetList.cpp
   96   CommandInterpreter &interpreter = debugger.GetCommandInterpreter();
tools/lldb/tools/lldb-test/lldb-test.cpp
 1022   CommandInterpreter &CI = Dbg.GetCommandInterpreter();
usr/include/c++/7.4.0/bits/alloc_traits.h
  474 	construct(allocator_type& __a, _Up* __p, _Args&&... __args)
usr/include/c++/7.4.0/bits/move.h
   72     constexpr _Tp&&
   83     constexpr _Tp&&
usr/include/c++/7.4.0/bits/shared_ptr.h
  202 	shared_ptr(nullptr_t __p, _Deleter __d, _Alloc __a)
  343 		   _Args&&... __args)
  688     allocate_shared(const _Alloc& __a, _Args&&... __args)
  703     make_shared(_Args&&... __args)
usr/include/c++/7.4.0/bits/shared_ptr_base.h
 1111         __shared_ptr(nullptr_t __p, _Deleter __d, _Alloc __a)
 1317 		     _Args&&... __args)
usr/include/c++/7.4.0/bits/unique_ptr.h
   68         default_delete(const default_delete<_Up>&) noexcept { }
   72       operator()(_Tp* __ptr) const
   74 	static_assert(!is_void<_Tp>::value,
   76 	static_assert(sizeof(_Tp)>0,
  122 	  using type = _Up*;
  137       using pointer = typename _Ptr<_Tp, _Dp>::type;
  161 	typename __uniq_ptr_impl<_Tp, _Up>::_DeleterConstraint::type;
  163       __uniq_ptr_impl<_Tp, _Dp> _M_t;
  166       using pointer	  = typename __uniq_ptr_impl<_Tp, _Dp>::pointer;
  167       using element_type  = _Tp;
  252 	unique_ptr(unique_ptr<_Up, _Ep>&& __u) noexcept
  811     { typedef unique_ptr<_Tp> __single_object; };
  823     inline typename _MakeUniq<_Tp>::__single_object
  824     make_unique(_Args&&... __args)
  825     { return unique_ptr<_Tp>(new _Tp(std::forward<_Args>(__args)...)); }
usr/include/c++/7.4.0/ext/new_allocator.h
  135 	construct(_Up* __p, _Args&&... __args)
usr/include/c++/7.4.0/type_traits
  215     : public __is_void_helper<typename remove_cv<_Tp>::type>::type
  326     : public __is_integral_helper<typename remove_cv<_Tp>::type>::type
  354     : public __is_floating_point_helper<typename remove_cv<_Tp>::type>::type
  567     : public __is_null_pointer_helper<typename remove_cv<_Tp>::type>::type
  581     : public __or_<is_lvalue_reference<_Tp>,
  582                    is_rvalue_reference<_Tp>>::type
  588     : public __or_<is_integral<_Tp>, is_floating_point<_Tp>>::type
  588     : public __or_<is_integral<_Tp>, is_floating_point<_Tp>>::type
  594     : public __or_<is_arithmetic<_Tp>, is_void<_Tp>,
  594     : public __or_<is_arithmetic<_Tp>, is_void<_Tp>,
  595 		   is_null_pointer<_Tp>>::type
  601     : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
  601     : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
  602                           is_void<_Tp>>>::type
  638     : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
  638     : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
 1554     { typedef _Tp     type; };
 1563     { typedef _Tp     type; };
 1574       remove_const<typename remove_volatile<_Tp>::type>::type     type;
 1633     { typedef _Tp   type; };
 1645     { typedef _Tp&   type; };
 1650     : public __add_lvalue_reference_helper<_Tp>
 1983     { typedef _Up     type; };