Lines Matching refs:interpreter

41 typedef void (*CompletionCallback)(CommandInterpreter &interpreter,
52 CommandInterpreter &interpreter, uint32_t completion_mask, in InvokeCommonCompletionCallbacks() argument
93 common_completions[i].callback(interpreter, request, searcher); in InvokeCommonCompletionCallbacks()
104 Completer(CommandInterpreter &interpreter, CompletionRequest &request) in Completer() argument
105 : m_interpreter(interpreter), m_request(request) {} in Completer()
130 SourceFileCompleter(CommandInterpreter &interpreter, in SourceFileCompleter() argument
132 : Completer(interpreter, request) { in SourceFileCompleter()
192 SymbolCompleter(CommandInterpreter &interpreter, CompletionRequest &request) in SymbolCompleter() argument
193 : Completer(interpreter, request) { in SymbolCompleter()
260 ModuleCompleter(CommandInterpreter &interpreter, CompletionRequest &request) in ModuleCompleter() argument
261 : Completer(interpreter, request) { in ModuleCompleter()
305 void CommandCompletions::SourceFiles(CommandInterpreter &interpreter, in SourceFiles() argument
308 SourceFileCompleter completer(interpreter, request); in SourceFiles()
311 lldb::TargetSP target_sp = interpreter.GetDebugger().GetSelectedTarget(); in SourceFiles()
472 void CommandCompletions::DiskFiles(CommandInterpreter &interpreter, in DiskFiles() argument
484 void CommandCompletions::DiskDirectories(CommandInterpreter &interpreter, in DiskDirectories() argument
496 void CommandCompletions::RemoteDiskFiles(CommandInterpreter &interpreter, in RemoteDiskFiles() argument
500 interpreter.GetDebugger().GetPlatformList().GetSelectedPlatform(); in RemoteDiskFiles()
505 void CommandCompletions::RemoteDiskDirectories(CommandInterpreter &interpreter, in RemoteDiskDirectories() argument
509 interpreter.GetDebugger().GetPlatformList().GetSelectedPlatform(); in RemoteDiskDirectories()
514 void CommandCompletions::Modules(CommandInterpreter &interpreter, in Modules() argument
517 ModuleCompleter completer(interpreter, request); in Modules()
520 lldb::TargetSP target_sp = interpreter.GetDebugger().GetSelectedTarget(); in Modules()
528 void CommandCompletions::ModuleUUIDs(CommandInterpreter &interpreter, in ModuleUUIDs() argument
531 const ExecutionContext &exe_ctx = interpreter.GetExecutionContext(); in ModuleUUIDs()
546 void CommandCompletions::Symbols(CommandInterpreter &interpreter, in Symbols() argument
549 SymbolCompleter completer(interpreter, request); in Symbols()
552 lldb::TargetSP target_sp = interpreter.GetDebugger().GetSelectedTarget(); in Symbols()
560 void CommandCompletions::SettingsNames(CommandInterpreter &interpreter, in SettingsNames() argument
568 interpreter.GetDebugger().GetValueProperties()); in SettingsNames()
581 void CommandCompletions::PlatformPluginNames(CommandInterpreter &interpreter, in PlatformPluginNames() argument
588 void CommandCompletions::ArchitectureNames(CommandInterpreter &interpreter, in ArchitectureNames() argument
594 void CommandCompletions::VariablePath(CommandInterpreter &interpreter, in VariablePath() argument
597 Variable::AutoComplete(interpreter.GetExecutionContext(), request); in VariablePath()
600 void CommandCompletions::Registers(CommandInterpreter &interpreter, in Registers() argument
608 interpreter.GetExecutionContext().GetRegisterContext(); in Registers()
617 void CommandCompletions::Breakpoints(CommandInterpreter &interpreter, in Breakpoints() argument
620 lldb::TargetSP target = interpreter.GetDebugger().GetSelectedTarget(); in Breakpoints()
648 void CommandCompletions::BreakpointNames(CommandInterpreter &interpreter, in BreakpointNames() argument
651 lldb::TargetSP target = interpreter.GetDebugger().GetSelectedTarget(); in BreakpointNames()
662 void CommandCompletions::ProcessPluginNames(CommandInterpreter &interpreter, in ProcessPluginNames() argument
668 void CommandCompletions::DisassemblyFlavors(CommandInterpreter &interpreter, in DisassemblyFlavors() argument
679 void CommandCompletions::ProcessIDs(CommandInterpreter &interpreter, in ProcessIDs() argument
682 lldb::PlatformSP platform_sp(interpreter.GetPlatform(true)); in ProcessIDs()
693 void CommandCompletions::ProcessNames(CommandInterpreter &interpreter, in ProcessNames() argument
696 lldb::PlatformSP platform_sp(interpreter.GetPlatform(true)); in ProcessNames()
706 void CommandCompletions::TypeLanguages(CommandInterpreter &interpreter, in TypeLanguages() argument
716 void CommandCompletions::FrameIndexes(CommandInterpreter &interpreter, in FrameIndexes() argument
719 const ExecutionContext &exe_ctx = interpreter.GetExecutionContext(); in FrameIndexes()
733 void CommandCompletions::StopHookIDs(CommandInterpreter &interpreter, in StopHookIDs() argument
737 interpreter.GetExecutionContext().GetTargetSP(); in StopHookIDs()
754 void CommandCompletions::ThreadIndexes(CommandInterpreter &interpreter, in ThreadIndexes() argument
757 const ExecutionContext &exe_ctx = interpreter.GetExecutionContext(); in ThreadIndexes()
771 void CommandCompletions::WatchPointIDs(CommandInterpreter &interpreter, in WatchPointIDs() argument
774 const ExecutionContext &exe_ctx = interpreter.GetExecutionContext(); in WatchPointIDs()
787 void CommandCompletions::TypeCategoryNames(CommandInterpreter &interpreter, in TypeCategoryNames() argument
799 CommandInterpreter &interpreter, CompletionRequest &request, in CompleteModifiableCmdPathArgs() argument
827 interpreter.GetUserCommandObject(args.GetArgumentAtIndex(0), &matches, in CompleteModifiableCmdPathArgs()
836 interpreter.VerifyUserMultiwordCmdPath(args, true, error); in CompleteModifiableCmdPathArgs()