Lines Matching refs:interpreter
41 typedef void (*CompletionCallback)(CommandInterpreter &interpreter,
52 CommandInterpreter &interpreter, uint32_t completion_mask, in InvokeCommonCompletionCallbacks() argument
99 common_completions[i].callback(interpreter, request, searcher); in InvokeCommonCompletionCallbacks()
110 Completer(CommandInterpreter &interpreter, CompletionRequest &request) in Completer() argument
111 : m_interpreter(interpreter), m_request(request) {} in Completer()
136 SourceFileCompleter(CommandInterpreter &interpreter, in SourceFileCompleter() argument
138 : Completer(interpreter, request) { in SourceFileCompleter()
198 SymbolCompleter(CommandInterpreter &interpreter, CompletionRequest &request) in SymbolCompleter() argument
199 : Completer(interpreter, request) { in SymbolCompleter()
263 ModuleCompleter(CommandInterpreter &interpreter, CompletionRequest &request) in ModuleCompleter() argument
264 : Completer(interpreter, request) { in ModuleCompleter()
308 void CommandCompletions::SourceFiles(CommandInterpreter &interpreter, in SourceFiles() argument
311 SourceFileCompleter completer(interpreter, request); in SourceFiles()
314 lldb::TargetSP target_sp = interpreter.GetDebugger().GetSelectedTarget(); in SourceFiles()
479 void CommandCompletions::DiskFiles(CommandInterpreter &interpreter, in DiskFiles() argument
491 void CommandCompletions::DiskDirectories(CommandInterpreter &interpreter, in DiskDirectories() argument
503 void CommandCompletions::RemoteDiskFiles(CommandInterpreter &interpreter, in RemoteDiskFiles() argument
507 interpreter.GetDebugger().GetPlatformList().GetSelectedPlatform(); in RemoteDiskFiles()
512 void CommandCompletions::RemoteDiskDirectories(CommandInterpreter &interpreter, in RemoteDiskDirectories() argument
516 interpreter.GetDebugger().GetPlatformList().GetSelectedPlatform(); in RemoteDiskDirectories()
521 void CommandCompletions::Modules(CommandInterpreter &interpreter, in Modules() argument
524 ModuleCompleter completer(interpreter, request); in Modules()
527 lldb::TargetSP target_sp = interpreter.GetDebugger().GetSelectedTarget(); in Modules()
535 void CommandCompletions::ModuleUUIDs(CommandInterpreter &interpreter, in ModuleUUIDs() argument
538 const ExecutionContext &exe_ctx = interpreter.GetExecutionContext(); in ModuleUUIDs()
553 void CommandCompletions::Symbols(CommandInterpreter &interpreter, in Symbols() argument
556 SymbolCompleter completer(interpreter, request); in Symbols()
559 lldb::TargetSP target_sp = interpreter.GetDebugger().GetSelectedTarget(); in Symbols()
567 void CommandCompletions::SettingsNames(CommandInterpreter &interpreter, in SettingsNames() argument
575 interpreter.GetDebugger().GetValueProperties()); in SettingsNames()
588 void CommandCompletions::PlatformPluginNames(CommandInterpreter &interpreter, in PlatformPluginNames() argument
595 void CommandCompletions::ArchitectureNames(CommandInterpreter &interpreter, in ArchitectureNames() argument
601 void CommandCompletions::VariablePath(CommandInterpreter &interpreter, in VariablePath() argument
604 Variable::AutoComplete(interpreter.GetExecutionContext(), request); in VariablePath()
607 void CommandCompletions::Registers(CommandInterpreter &interpreter, in Registers() argument
615 interpreter.GetExecutionContext().GetRegisterContext(); in Registers()
627 void CommandCompletions::Breakpoints(CommandInterpreter &interpreter, in Breakpoints() argument
630 lldb::TargetSP target = interpreter.GetDebugger().GetSelectedTarget(); in Breakpoints()
658 void CommandCompletions::BreakpointNames(CommandInterpreter &interpreter, in BreakpointNames() argument
661 lldb::TargetSP target = interpreter.GetDebugger().GetSelectedTarget(); in BreakpointNames()
672 void CommandCompletions::ProcessPluginNames(CommandInterpreter &interpreter, in ProcessPluginNames() argument
678 void CommandCompletions::DisassemblyFlavors(CommandInterpreter &interpreter, in DisassemblyFlavors() argument
689 void CommandCompletions::ProcessIDs(CommandInterpreter &interpreter, in ProcessIDs() argument
692 lldb::PlatformSP platform_sp(interpreter.GetPlatform(true)); in ProcessIDs()
703 void CommandCompletions::ProcessNames(CommandInterpreter &interpreter, in ProcessNames() argument
706 lldb::PlatformSP platform_sp(interpreter.GetPlatform(true)); in ProcessNames()
716 void CommandCompletions::TypeLanguages(CommandInterpreter &interpreter, in TypeLanguages() argument
726 void CommandCompletions::FrameIndexes(CommandInterpreter &interpreter, in FrameIndexes() argument
729 const ExecutionContext &exe_ctx = interpreter.GetExecutionContext(); in FrameIndexes()
734 Debugger &dbg = interpreter.GetDebugger(); in FrameIndexes()
747 void CommandCompletions::StopHookIDs(CommandInterpreter &interpreter, in StopHookIDs() argument
751 interpreter.GetExecutionContext().GetTargetSP(); in StopHookIDs()
768 void CommandCompletions::ThreadIndexes(CommandInterpreter &interpreter, in ThreadIndexes() argument
771 const ExecutionContext &exe_ctx = interpreter.GetExecutionContext(); in ThreadIndexes()
785 void CommandCompletions::WatchPointIDs(CommandInterpreter &interpreter, in WatchPointIDs() argument
788 const ExecutionContext &exe_ctx = interpreter.GetExecutionContext(); in WatchPointIDs()
801 void CommandCompletions::TypeCategoryNames(CommandInterpreter &interpreter, in TypeCategoryNames() argument
812 void CommandCompletions::ThreadIDs(CommandInterpreter &interpreter, in ThreadIDs() argument
815 const ExecutionContext &exe_ctx = interpreter.GetExecutionContext(); in ThreadIDs()
830 CommandInterpreter &interpreter, CompletionRequest &request, in CompleteModifiableCmdPathArgs() argument
858 interpreter.GetUserCommandObject(args.GetArgumentAtIndex(0), &matches, in CompleteModifiableCmdPathArgs()
867 interpreter.VerifyUserMultiwordCmdPath(args, true, error); in CompleteModifiableCmdPathArgs()