/external/lldb/test/functionalities/plugins/commands/ |
D | TestPluginCommands.py | 31 retval = debugger.GetCommandInterpreter().HandleCommand("plugin load plugin.dylib",retobj) 35 …retval = debugger.GetCommandInterpreter().HandleCommand("plugin_loaded_command child abc def ghi",… 45 … retval = debugger.GetCommandInterpreter().HandleCommand("plugin_loaded_ ch abc def ghi",retobj)
|
D | plugin.cpp | 52 lldb::SBCommandInterpreter interpreter = debugger.GetCommandInterpreter(); in PluginInitialize()
|
/external/lldb/test/expression_command/call-restarts/ |
D | TestCallThatRestarts.py | 70 …self.dbg.GetCommandInterpreter().HandleCommand("process handle SIGCHLD -s 0 -p 1 -n 0", return_obj) 109 …self.dbg.GetCommandInterpreter().HandleCommand("process handle SIGCHLD -s 0 -p 1 -n 1", return_obj) 129 …self.dbg.GetCommandInterpreter().HandleCommand("process handle SIGCHLD -s 1 -p 1 -n 1", return_obj) 136 …self.dbg.GetCommandInterpreter().HandleCommand("process handle SIGCHLD -s 0 -p 1 -n 1", return_obj)
|
/external/lldb/source/Interpreter/ |
D | ScriptInterpreterPython.cpp | 240 m_debugger_sp = m_interpreter->GetCommandInterpreter().GetDebugger().shared_from_this(); in PythonInputReaderManager() 544 Debugger &debugger = GetCommandInterpreter().GetDebugger(); in ~ScriptInterpreterPython() 662 … 'lldb.debugger_unique_id = %" PRIu64, m_dictionary_name.c_str(), GetCommandInterpreter().GetDebug… in EnterSession() 663 …ldb.debugger = lldb.SBDebugger.FindDebuggerWithID (%" PRIu64 ")", GetCommandInterpreter().GetDebug… in EnterSession() 673 …\"lldb.debugger_unique_id = %" PRIu64, m_dictionary_name.c_str(), GetCommandInterpreter().GetDebug… in EnterSession() 674 …ldb.debugger = lldb.SBDebugger.FindDebuggerWithID (%" PRIu64 ")", GetCommandInterpreter().GetDebug… in EnterSession() 876 bool batch_mode = reader.GetDebugger().GetCommandInterpreter().GetBatchCommandMode(); in InputReaderCallback() 1006 Debugger &debugger = GetCommandInterpreter().GetDebugger(); in ExecuteInterpreterLoop() 1302 bool batch_mode = reader.GetDebugger().GetCommandInterpreter().GetBatchCommandMode(); in GenerateBreakpointOptionsCommandCallback() 1320 bool batch_mode = reader.GetDebugger().GetCommandInterpreter().GetBatchCommandMode(); in GenerateBreakpointOptionsCommandCallback() [all …]
|
D | ScriptInterpreter.cpp | 39 ScriptInterpreter::GetCommandInterpreter () in GetCommandInterpreter() function in ScriptInterpreter
|
/external/lldb/source/API/ |
D | SBDebugger.cpp | 111 SBCommandInterpreter interp = debugger.GetCommandInterpreter(); in Create() 219 m_opaque_sp->GetCommandInterpreter().SkipLLDBInitFiles (b); in SkipLLDBInitFiles() 226 m_opaque_sp->GetCommandInterpreter().SkipAppInitFiles (b); in SkipAppInitFiles() 311 SBDebugger::GetCommandInterpreter () in GetCommandInterpreter() function in SBDebugger 317 sb_interpreter.reset (&m_opaque_sp->GetCommandInterpreter()); in GetCommandInterpreter() 336 SBCommandInterpreter sb_interpreter(GetCommandInterpreter ()); in HandleCommand() 348 SBProcess process(GetCommandInterpreter().GetProcess ()); in HandleCommand() 945 ExecutionContext exe_ctx (debugger_sp->GetCommandInterpreter().GetExecutionContext()); in SetInternalVariable() 968 ExecutionContext exe_ctx (debugger_sp->GetCommandInterpreter().GetExecutionContext()); in GetInternalVariableValue()
|
D | SBCommandInterpreter.cpp | 469 …tMultiword *new_command = new CommandObjectMultiword(m_opaque_sp->GetCommandInterpreter(),name,hel… in AddMultiwordCommand() 485 …nd_sp.reset(new CommandPluginInterfaceImplementation(m_opaque_sp->GetCommandInterpreter(),name,imp… in AddCommand()
|
D | SBTypeCategory.cpp | 361 … ScriptInterpreter* interpreter_ptr = debugger_sp->GetCommandInterpreter().GetScriptInterpreter(); in AddTypeSummary() 469 … ScriptInterpreter* interpreter_ptr = debugger_sp->GetCommandInterpreter().GetScriptInterpreter(); in AddTypeSynthetic()
|
/external/lldb/test/expression_command/timeout/ |
D | TestCallWithTimeout.py | 70 interp = self.dbg.GetCommandInterpreter() 84 interp = self.dbg.GetCommandInterpreter()
|
/external/lldb/examples/plugins/commands/ |
D | fooplugin.cpp | 51 lldb::SBCommandInterpreter interpreter = debugger.GetCommandInterpreter(); in PluginInitialize()
|
/external/lldb/source/Core/ |
D | InputReader.cpp | 308 if (m_debugger.GetCommandInterpreter().GetBatchCommandMode()) in RefreshPrompt() 380 return reader.GetDebugger().GetCommandInterpreter().GetBatchCommandMode(); in GetBatchMode()
|
D | Debugger.cpp | 195 GetCommandInterpreter().BroadcastEvent (prompt_change_event_sp); in SetPropertyValue() 261 GetCommandInterpreter().BroadcastEvent (prompt_change_event_sp); in SetPrompt() 772 … ScriptInterpreter* script_interpreter = GetCommandInterpreter().GetScriptInterpreter(can_create); in SetOutputFileHandle() 1069 return StreamSP (new StreamAsynchronousIO (GetCommandInterpreter(), in GetAsyncOutputStream() 1076 return StreamSP (new StreamAsynchronousIO (GetCommandInterpreter(), in GetAsyncErrorStream() 1918 …erpreter* script_interpreter = process->GetTarget().GetDebugger().GetCommandInterpreter().GetScrip… in FormatPromptRecurse() 1995 …ipt_interpreter = thread->GetProcess()->GetTarget().GetDebugger().GetCommandInterpreter().GetScrip… in FormatPromptRecurse() 2044 …ScriptInterpreter* script_interpreter = target->GetDebugger().GetCommandInterpreter().GetScriptInt… in FormatPromptRecurse() 2159 …ter = frame->GetThread()->GetProcess()->GetTarget().GetDebugger().GetCommandInterpreter().GetScrip… in FormatPromptRecurse()
|
/external/lldb/source/DataFormatters/ |
D | TypeSynthetic.cpp | 82 m_interpreter = target_sp->GetDebugger().GetCommandInterpreter().GetScriptInterpreter(); in FrontEnd()
|
D | TypeSummary.cpp | 219 …ScriptInterpreter *script_interpreter = target_sp->GetDebugger().GetCommandInterpreter().GetScript… in FormatObject()
|
/external/lldb/test/lang/objc/objc-optimized/ |
D | TestObjcOptimized.py | 55 interp = self.dbg.GetCommandInterpreter()
|
/external/lldb/test/python_api/default-constructor/ |
D | sb_debugger.py | 19 obj.GetCommandInterpreter()
|
/external/lldb/test/python_api/interpreter/ |
D | TestCommandInterpreterAPI.py | 43 ci = self.dbg.GetCommandInterpreter()
|
/external/lldb/tools/driver/ |
D | Driver.cpp | 971 m_debugger.GetCommandInterpreter().HandleCommand("process status", result, false); in HandleProcessEvent() 1016 … m_debugger.GetCommandInterpreter().HandleCommand("process status", result, false); in HandleProcessEvent() 1083 m_debugger.GetCommandInterpreter().HandleCommand (command_string, result, true); in HandleIOEvent() 1321 SBCommandInterpreter sb_interpreter = m_debugger.GetCommandInterpreter(); in MainLoop() 1412 … m_debugger.GetCommandInterpreter().HandleCommand (command_string, result, false); in MainLoop()
|
D | IOChannel.cpp | 108 …int num_completions = m_driver->GetDebugger().GetCommandInterpreter().HandleCompletion (line_info-… in HandleCompletion() 396 …SBBroadcaster interpreter_broadcaster (m_driver->GetDebugger().GetCommandInterpreter().GetBroadcas… in Run()
|
/external/lldb/test/attic/ |
D | tester.py | 87 self.m_commandInterpreter = debugger.GetCommandInterpreter()
|
/external/lldb/scripts/Python/interface/ |
D | SBDebugger.i | 174 GetCommandInterpreter ();
|
/external/lldb/tools/lldb-perf/lib/ |
D | Xcode.cpp | 140 auto interpreter = debugger.GetCommandInterpreter(); in RunCommand()
|
/external/lldb/include/lldb/API/ |
D | SBDebugger.h | 98 GetCommandInterpreter ();
|
/external/lldb/include/lldb/Core/ |
D | Debugger.h | 146 GetCommandInterpreter () in GetCommandInterpreter() function
|
/external/lldb/source/Commands/ |
D | CommandObjectWatchpointCommand.cpp | 252 bool batch_mode = reader.GetDebugger().GetCommandInterpreter().GetBatchCommandMode(); in GenerateWatchpointCommandCallback() 364 debugger.GetCommandInterpreter().HandleCommands (commands, in WatchpointOptionsCallbackFunction()
|