Home
last modified time | relevance | path

Searched refs:GetCommandInterpreter (Results 1 – 25 of 49) sorted by relevance

12

/external/lldb/test/functionalities/plugins/commands/
DTestPluginCommands.py31 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)
Dplugin.cpp52 lldb::SBCommandInterpreter interpreter = debugger.GetCommandInterpreter(); in PluginInitialize()
/external/lldb/test/expression_command/call-restarts/
DTestCallThatRestarts.py70 …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/
DScriptInterpreterPython.cpp240 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 …]
DScriptInterpreter.cpp39 ScriptInterpreter::GetCommandInterpreter () in GetCommandInterpreter() function in ScriptInterpreter
/external/lldb/source/API/
DSBDebugger.cpp111 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()
DSBCommandInterpreter.cpp469 …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()
DSBTypeCategory.cpp361 … 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/
DTestCallWithTimeout.py70 interp = self.dbg.GetCommandInterpreter()
84 interp = self.dbg.GetCommandInterpreter()
/external/lldb/examples/plugins/commands/
Dfooplugin.cpp51 lldb::SBCommandInterpreter interpreter = debugger.GetCommandInterpreter(); in PluginInitialize()
/external/lldb/source/Core/
DInputReader.cpp308 if (m_debugger.GetCommandInterpreter().GetBatchCommandMode()) in RefreshPrompt()
380 return reader.GetDebugger().GetCommandInterpreter().GetBatchCommandMode(); in GetBatchMode()
DDebugger.cpp195 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/
DTypeSynthetic.cpp82 m_interpreter = target_sp->GetDebugger().GetCommandInterpreter().GetScriptInterpreter(); in FrontEnd()
DTypeSummary.cpp219 …ScriptInterpreter *script_interpreter = target_sp->GetDebugger().GetCommandInterpreter().GetScript… in FormatObject()
/external/lldb/test/lang/objc/objc-optimized/
DTestObjcOptimized.py55 interp = self.dbg.GetCommandInterpreter()
/external/lldb/test/python_api/default-constructor/
Dsb_debugger.py19 obj.GetCommandInterpreter()
/external/lldb/test/python_api/interpreter/
DTestCommandInterpreterAPI.py43 ci = self.dbg.GetCommandInterpreter()
/external/lldb/tools/driver/
DDriver.cpp971 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()
DIOChannel.cpp108 …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/
Dtester.py87 self.m_commandInterpreter = debugger.GetCommandInterpreter()
/external/lldb/scripts/Python/interface/
DSBDebugger.i174 GetCommandInterpreter ();
/external/lldb/tools/lldb-perf/lib/
DXcode.cpp140 auto interpreter = debugger.GetCommandInterpreter(); in RunCommand()
/external/lldb/include/lldb/API/
DSBDebugger.h98 GetCommandInterpreter ();
/external/lldb/include/lldb/Core/
DDebugger.h146 GetCommandInterpreter () in GetCommandInterpreter() function
/external/lldb/source/Commands/
DCommandObjectWatchpointCommand.cpp252 bool batch_mode = reader.GetDebugger().GetCommandInterpreter().GetBatchCommandMode(); in GenerateWatchpointCommandCallback()
364 debugger.GetCommandInterpreter().HandleCommands (commands, in WatchpointOptionsCallbackFunction()

12