Home
last modified time | relevance | path

Searched refs:m_saved_stdin (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp408 : ScriptInterpreterPython(debugger), m_saved_stdin(), m_saved_stdout(), in ScriptInterpreterPythonImpl()
586 if (m_saved_stdin.IsValid()) { in LeaveSession()
587 sys_module_dict.SetItemForKey(PythonString("stdin"), m_saved_stdin); in LeaveSession()
588 m_saved_stdin.Reset(); in LeaveSession()
689 m_saved_stdin.Reset(); in EnterSession()
691 if (!SetStdHandle(in_sp, "stdin", m_saved_stdin, "r")) { in EnterSession()
693 SetStdHandle(top_in_sp, "stdin", m_saved_stdin, "r"); in EnterSession()
H A DScriptInterpreterPythonImpl.h415 python::PythonObject m_saved_stdin; variable