Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp406 : ScriptInterpreterPython(debugger), m_saved_stdin(), m_saved_stdout(), in ScriptInterpreterPythonImpl()
592 if (m_saved_stdin.IsValid()) { in LeaveSession()
593 sys_module_dict.SetItemForKey(PythonString("stdin"), m_saved_stdin); in LeaveSession()
594 m_saved_stdin.Reset(); in LeaveSession()
695 m_saved_stdin.Reset(); in EnterSession()
697 if (!SetStdHandle(in_sp, "stdin", m_saved_stdin, "r")) { in EnterSession()
699 SetStdHandle(top_in_sp, "stdin", m_saved_stdin, "r"); in EnterSession()
H A DScriptInterpreterPythonImpl.h400 python::PythonObject m_saved_stdin; variable