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.cpp427 : ScriptInterpreterPython(debugger), m_saved_stdin(), m_saved_stdout(), in ScriptInterpreterPythonImpl()
606 if (m_saved_stdin.IsValid()) { in LeaveSession()
607 sys_module_dict.SetItemForKey(PythonString("stdin"), m_saved_stdin); in LeaveSession()
608 m_saved_stdin.Reset(); in LeaveSession()
709 m_saved_stdin.Reset(); in EnterSession()
711 if (!SetStdHandle(in_sp, "stdin", m_saved_stdin, "r")) { in EnterSession()
713 SetStdHandle(top_in_sp, "stdin", m_saved_stdin, "r"); in EnterSession()
H A DScriptInterpreterPythonImpl.h409 python::PythonObject m_saved_stdin; variable