Home
last modified time | relevance | path

Searched refs:script_interpreter (Results 1 – 5 of 5) sorted by relevance

/external/lldb/source/Interpreter/
DScriptInterpreterPython.cpp302 ScriptInterpreterPython *script_interpreter = (ScriptInterpreterPython *) baton; in InputReaderCallback() local
304 if (script_interpreter->m_script_lang != eScriptLanguagePython) in InputReaderCallback()
316 script_interpreter->SaveTerminalState(input_fd); in InputReaderCallback()
319 …if (script_interpreter->m_embedded_thread_pty.OpenFirstAvailableMaster (O_RDWR|O_NOCTTY, error_str… in InputReaderCallback()
324script_interpreter->m_embedded_thread_pty.GetMasterFileDescriptor()); in InputReaderCallback()
328 …const char *pty_slave_name = script_interpreter->m_embedded_thread_pty.GetSlaveName (error_str, si… in InputReaderCallback()
331 ScriptInterpreterPython::Locker locker(script_interpreter, in InputReaderCallback()
334 …un_string.Printf ("run_one_line (%s, 'save_stderr = sys.stderr')", script_interpreter->m_dictionar… in InputReaderCallback()
338 …run_string.Printf ("run_one_line (%s, 'sys.stderr = sys.stdout')", script_interpreter->m_dictionar… in InputReaderCallback()
342 …run_string.Printf ("run_one_line (%s, 'save_stdin = sys.stdin')", script_interpreter->m_dictionary… in InputReaderCallback()
[all …]
DCommandObjectScript.cpp67 ScriptInterpreter *script_interpreter = m_interpreter.GetScriptInterpreter (); in DoExecute()
69 if (script_interpreter == NULL) in DoExecute()
80 script_interpreter->ExecuteInterpreterLoop (); in DoExecute()
86 if (script_interpreter->ExecuteOneLine (command, &result)) in DoExecute()
/external/lldb/source/DataFormatters/
DTypeSummary.cpp219 …ScriptInterpreter *script_interpreter = target_sp->GetDebugger().GetCommandInterpreter().GetScript… in FormatObject() local
221 if (!script_interpreter) in FormatObject()
227 return script_interpreter->GetScriptedSummary(m_function_name.c_str(), in FormatObject()
/external/lldb/source/Core/
DDebugger.cpp772 … ScriptInterpreter* script_interpreter = GetCommandInterpreter().GetScriptInterpreter(can_create); in SetOutputFileHandle() local
773 if (script_interpreter) in SetOutputFileHandle()
774 script_interpreter->ResetOutputFileHandle (fh); in SetOutputFileHandle()
1330 static bool RunScriptFormatKeyword(Stream &s, ScriptInterpreter *script_interpreter, T t, const std… in RunScriptFormatKeyword() argument
1332 if (script_interpreter) in RunScriptFormatKeyword()
1337 …if (script_interpreter->RunScriptFormatKeyword(script_name.c_str(), t, script_output, script_error… in RunScriptFormatKeyword()
1918 …ScriptInterpreter* script_interpreter = process->GetTarget().GetDebugger().GetCommandInterpreter()… in FormatPromptRecurse() local
1919 … if (RunScriptFormatKeyword (s, script_interpreter, process, script_name)) in FormatPromptRecurse()
1995 …ScriptInterpreter* script_interpreter = thread->GetProcess()->GetTarget().GetDebugger().GetCommand… in FormatPromptRecurse() local
1996 … if (RunScriptFormatKeyword (s, script_interpreter, thread, script_name)) in FormatPromptRecurse()
[all …]
DModule.cpp1348 … ScriptInterpreter *script_interpreter = debugger.GetCommandInterpreter().GetScriptInterpreter(); in LoadScriptingResourceInTarget() local
1349 if (script_interpreter) in LoadScriptingResourceInTarget()
1373 … bool did_load = script_interpreter->LoadScriptingModule(scripting_stream.GetData(), in LoadScriptingResourceInTarget()