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

References

tools/lldb/include/lldb/Interpreter/CommandObject.h
  123   CommandInterpreter &GetCommandInterpreter() { return m_interpreter; }
tools/lldb/source/API/SBCommandInterpreter.cpp
  166     SBCommandInterpreter sb_interpreter(&m_interpreter);
  167     SBDebugger debugger_sb(m_interpreter.GetDebugger().shared_from_this());
tools/lldb/source/Commands/CommandObjectApropos.cpp
   54       m_interpreter.FindCommandsForApropos(search_word, commands_found,
   69             m_interpreter.OutputFormattedHelpText(
   85               m_interpreter, result.GetOutputStream(), 0, dump_qualified_name);
tools/lldb/source/Commands/CommandObjectBreakpoint.cpp
 1449           !m_interpreter.Confirm(
tools/lldb/source/Commands/CommandObjectBreakpointCommand.cpp
  256     m_interpreter.GetLLDBCommandsFromIOHandler(
tools/lldb/source/Commands/CommandObjectCommands.cpp
  116       m_interpreter.GetCommandHistory().Clear();
  135         const CommandHistory &history(m_interpreter.GetCommandHistory());
  310         options.SetEchoCommands(m_interpreter.GetEchoCommands());
  311         options.SetEchoCommentCommands(m_interpreter.GetEchoCommentCommands());
  314       m_interpreter.HandleCommandsFromFile(cmd_file, exe_ctx, options, result);
  319       m_interpreter.HandleCommandsFromFile(cmd_file, exe_ctx, options, result);
  575     if (m_interpreter.CommandExists(alias_command)) {
  588         m_interpreter.GetCommandObjectForCommand(raw_command_string);
  619             m_interpreter.GetCommandSPExact(cmd_obj.GetCommandName(), false)) {
  620       if (m_interpreter.AliasExists(alias_command) ||
  621           m_interpreter.UserCommandExists(alias_command)) {
  626       if (CommandAlias *alias = m_interpreter.AddAlias(
  665     if (m_interpreter.CommandExists(alias_command)) {
  674         m_interpreter.GetCommandSPExact(actual_command, true));
  713           m_interpreter.GetCommandSPExact(cmd_obj->GetCommandName(), false);
  715         tmp_sp = m_interpreter.GetCommandSPExact(sub_cmd_obj->GetCommandName(),
  721     if (m_interpreter.AliasExists(alias_command) ||
  722         m_interpreter.UserCommandExists(alias_command)) {
  727     if (CommandAlias *alias = m_interpreter.AddAlias(
  784     cmd_obj = m_interpreter.GetCommandObject(command_name);
  794     if (m_interpreter.CommandExists(command_name)) {
  809     if (!m_interpreter.RemoveAlias(command_name)) {
  810       if (m_interpreter.AliasExists(command_name))
  866     if (!m_interpreter.CommandExists(command_name)) {
  878     if (!m_interpreter.RemoveCommand(command_name)) {
  976         m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true);
  993         m_interpreter, name, m_options.GetHelp(), m_options.GetSyntax(), 10, 0,
 1132         m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true);
 1615                 m_interpreter, m_cmd_name, funct_name_str, m_short_help,
 1618             if (!m_interpreter.AddUserCommand(m_cmd_name, command_obj_sp,
 1665         m_interpreter.GetPythonCommandsFromIOHandler(
 1673             m_interpreter, m_cmd_name, m_options.m_funct_name,
 1675         if (m_interpreter.AddUserCommand(m_cmd_name, new_cmd, true)) {
 1699           m_interpreter, m_cmd_name, cmd_obj_sp, m_synchronicity));
 1700       if (m_interpreter.AddUserCommand(m_cmd_name, new_cmd, true)) {
 1734     m_interpreter.GetHelp(result, CommandInterpreter::eCommandTypesUserDef);
 1760     m_interpreter.RemoveAllUser();
 1803     if (cmd_name.empty() || !m_interpreter.HasUserCommands() ||
 1804         !m_interpreter.UserCommandExists(cmd_name)) {
 1810     m_interpreter.RemoveUser(cmd_name);
tools/lldb/source/Commands/CommandObjectExpression.cpp
  306   if (m_interpreter.GetExecutionContext().GetFramePtr() == nullptr)
  307     m_interpreter.UpdateExecutionContext(nullptr);
  311   if (m_interpreter.GetExecutionContext().GetFramePtr() == nullptr)
  314   ExecutionContext exe_ctx(m_interpreter.GetExecutionContext());
  375   ExecutionContext exe_ctx(m_interpreter.GetExecutionContext());
  591       Target *target = m_interpreter.GetExecutionContext().GetTargetPtr();
  606           m_interpreter.GetIOHandler(false)->SetIsDone(true);
  660       CommandHistory &history = m_interpreter.GetCommandHistory();
tools/lldb/source/Commands/CommandObjectFrame.cpp
  711     if (m_interpreter.TruncationWarningNecessary()) {
  712       result.GetOutputStream().Printf(m_interpreter.TruncationWarningText(),
  714       m_interpreter.TruncationWarningGiven();
  930       if (!m_interpreter.Confirm(
tools/lldb/source/Commands/CommandObjectHelp.cpp
   94     m_interpreter.GetHelp(result, cmd_types); // General help
  100     cmd_obj = m_interpreter.GetCommandObject(command_name, &matches);
  148               m_interpreter.GetCommandPrefix(), sub_command.c_str());
  155               m_interpreter.GetCommandPrefix(), sub_command.c_str());
  167       if (m_interpreter.GetAliasFullName(command_name, alias_full_name)) {
  169         m_interpreter.GetAlias(alias_full_name)->GetAliasExpansion(sstr);
  188         CommandObject::GetArgumentHelp(output_strm, arg_type, m_interpreter);
  193                                              m_interpreter.GetCommandPrefix(),
  207     m_interpreter.HandleCompletionMatches(request);
  211       m_interpreter.GetCommandObject(request.GetParsedLine()[0].ref());
  222   m_interpreter.HandleCompletionMatches(request);
tools/lldb/source/Commands/CommandObjectMultiword.cpp
  171       m_interpreter.OutputFormattedHelpText(output_stream,
  175       m_interpreter.OutputFormattedHelpText(output_stream,
tools/lldb/source/Commands/CommandObjectPlatform.cpp
  177             m_interpreter, ArchSpec(), select, error, platform_arch));
  321       m_platform_options = platform_sp->GetConnectionOptions(m_interpreter);
tools/lldb/source/Commands/CommandObjectProcess.cpp
   67         if (!m_interpreter.Confirm(message, true)) {
  423     m_interpreter.UpdateExecutionContext(nullptr);
  482       m_interpreter.HandleCommand("process continue", eLazyBoolNo, result);
  552     bool synchronous_execution = m_interpreter.GetSynchronous();
  821     PlatformSP platform_sp = m_interpreter.GetPlatform(true);
  850     Process *process = m_interpreter.GetExecutionContext().GetProcessPtr();
 1444         if (m_interpreter.Confirm(
tools/lldb/source/Commands/CommandObjectQuit.cpp
   31   if (!m_interpreter.GetPromptOnQuit())
   69     if (!m_interpreter.Confirm(message.GetString(), true)) {
   94     if (!m_interpreter.SetQuitExitCode(exit_code)) {
  104   m_interpreter.BroadcastEvent(event_type);
tools/lldb/source/Commands/CommandObjectSettings.cpp
  164       value_sp->AutoComplete(m_interpreter, request);
  480     m_interpreter.HandleCommandsFromFile(file, &clean_ctx, options, result);
  545           property->DumpDescription(m_interpreter, result.GetOutputStream(), 0,
  554       GetDebugger().DumpAllDescriptions(m_interpreter,
tools/lldb/source/Commands/CommandObjectTarget.cpp
 1007     if (m_interpreter.TruncationWarningNecessary()) {
 1008       result.GetOutputStream().Printf(m_interpreter.TruncationWarningText(),
 1010       m_interpreter.TruncationWarningGiven();
 2019           if (m_interpreter.WasInterrupted())
 2023               m_interpreter, result.GetOutputStream(),
 2049               if (m_interpreter.WasInterrupted())
 2052               DumpModuleSymtab(m_interpreter, result.GetOutputStream(), module,
 2107           if (m_interpreter.WasInterrupted())
 2111               m_interpreter, result.GetOutputStream(),
 2130             if (m_interpreter.WasInterrupted())
 2135               DumpModuleSections(m_interpreter, result.GetOutputStream(),
 2193         if (m_interpreter.WasInterrupted())
 2219         if (m_interpreter.WasInterrupted())
 2266           if (m_interpreter.WasInterrupted())
 2289             if (m_interpreter.WasInterrupted())
 2359             if (m_interpreter.WasInterrupted())
 2362                     m_interpreter, result.GetOutputStream(),
 3744         if (LookupTypeHere(m_interpreter, result.GetOutputStream(),
 3763                 m_interpreter, result.GetOutputStream(), module,
 3777         if (LookupSymbolInModule(m_interpreter, result.GetOutputStream(),
 3789                 m_interpreter, result.GetOutputStream(), module,
 3802                 m_interpreter, result.GetOutputStream(), module,
 3816         if (LookupTypeInModule(m_interpreter, result.GetOutputStream(), module,
 3854       if (LookupHere(m_interpreter, result, syntax_error)) {
 3874               LookupInModule(m_interpreter,
 3899               if (LookupInModule(m_interpreter, module, result, syntax_error)) {
 4692         m_interpreter.GetLLDBCommandsFromIOHandler(
 4728       if (!m_interpreter.Confirm("Delete all stop hooks?", true)) {
tools/lldb/source/Commands/CommandObjectThread.cpp
  566     bool synchronous_execution = m_interpreter.GetSynchronous();
  830     bool synchronous_execution = m_interpreter.GetSynchronous();
 1095     bool synchronous_execution = m_interpreter.GetSynchronous();
tools/lldb/source/Commands/CommandObjectType.cpp
 1340     m_interpreter.GetPythonCommandsFromIOHandler(
 2240   m_interpreter.GetPythonCommandsFromIOHandler(
tools/lldb/source/Commands/CommandObjectWatchpoint.cpp
  459       if (!m_interpreter.Confirm(
tools/lldb/source/Commands/CommandObjectWatchpointCommand.cpp
  240     m_interpreter.GetLLDBCommandsFromIOHandler(
tools/lldb/source/Interpreter/CommandObject.cpp
   52 Debugger &CommandObject::GetDebugger() { return m_interpreter.GetDebugger(); }
  152   m_exe_ctx = m_interpreter.GetExecutionContext();
  210     Process *process = m_interpreter.GetExecutionContext().GetProcessPtr();
  921   return *m_interpreter.GetDebugger().GetDummyTarget();
  925   return *m_interpreter.GetDebugger().GetSelectedOrDummyTarget(prefer_dummy);
  934   return *m_interpreter.GetDebugger().GetSelectedTarget();
  946       target = m_interpreter.GetDebugger().GetSelectedTarget().get();
  973             m_interpreter.ProcessEmbeddedScriptCommands(entry.value().c_str()));
tools/lldb/source/Interpreter/CommandObjectRegexCommand.cpp
   52       if (m_interpreter.GetExpandRegexAliases())
   57       return m_interpreter.HandleCommand(
tools/lldb/source/Interpreter/CommandObjectScript.cpp
   45   if (m_interpreter.GetDebugger().GetScriptLanguage() ==
tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
 5155           (ProcessGDBRemote *)m_interpreter.GetExecutionContext()
 5159             m_interpreter.GetDebugger().GetAsyncOutputStream());
 5204           (ProcessGDBRemote *)m_interpreter.GetExecutionContext()
 5243         (ProcessGDBRemote *)m_interpreter.GetExecutionContext().GetProcessPtr();
 5284         (ProcessGDBRemote *)m_interpreter.GetExecutionContext().GetProcessPtr();
 5334         (ProcessGDBRemote *)m_interpreter.GetExecutionContext().GetProcessPtr();
tools/lldb/source/Plugins/Process/minidump/ProcessMinidump.cpp
  768         m_interpreter.GetExecutionContext().GetProcessPtr());