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.cpp599 PythonDictionary &sys_module_dict = GetSysModuleDictionary(); in LeaveSession() local
600 if (sys_module_dict.IsValid()) { in LeaveSession()
602 sys_module_dict.SetItemForKey(PythonString("stdin"), m_saved_stdin); in LeaveSession()
606 sys_module_dict.SetItemForKey(PythonString("stdout"), m_saved_stdout); in LeaveSession()
610 sys_module_dict.SetItemForKey(PythonString("stderr"), m_saved_stderr); in LeaveSession()
632 PythonDictionary &sys_module_dict = GetSysModuleDictionary(); in SetStdHandle() local
640 save_file = sys_module_dict.GetItemForKey(PythonString(py_name)); in SetStdHandle()
642 sys_module_dict.SetItemForKey(PythonString(py_name), new_file.get()); in SetStdHandle()
695 PythonDictionary &sys_module_dict = GetSysModuleDictionary(); in EnterSession() local
696 if (sys_module_dict.IsValid()) { in EnterSession()