Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp584 PythonDictionary &sys_module_dict = GetSysModuleDictionary(); in LeaveSession() local
585 if (sys_module_dict.IsValid()) { in LeaveSession()
587 sys_module_dict.SetItemForKey(PythonString("stdin"), m_saved_stdin); in LeaveSession()
591 sys_module_dict.SetItemForKey(PythonString("stdout"), m_saved_stdout); in LeaveSession()
595 sys_module_dict.SetItemForKey(PythonString("stderr"), m_saved_stderr); in LeaveSession()
617 PythonDictionary &sys_module_dict = GetSysModuleDictionary(); in SetStdHandle() local
625 save_file = sys_module_dict.GetItemForKey(PythonString(py_name)); in SetStdHandle()
627 sys_module_dict.SetItemForKey(PythonString(py_name), new_file.get()); in SetStdHandle()
680 PythonDictionary &sys_module_dict = GetSysModuleDictionary(); in EnterSession() local
681 if (sys_module_dict.IsValid()) { in EnterSession()