Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp555 PythonDictionary &sys_module_dict = GetSysModuleDictionary(); in LeaveSession() local
556 if (sys_module_dict.IsValid()) { in LeaveSession()
558 sys_module_dict.SetItemForKey(PythonString("stdin"), m_saved_stdin); in LeaveSession()
562 sys_module_dict.SetItemForKey(PythonString("stdout"), m_saved_stdout); in LeaveSession()
566 sys_module_dict.SetItemForKey(PythonString("stderr"), m_saved_stderr); in LeaveSession()
582 PythonDictionary &sys_module_dict = GetSysModuleDictionary(); in SetStdHandle() local
584 save_file = sys_module_dict.GetItemForKey(PythonString(py_name)) in SetStdHandle()
588 sys_module_dict.SetItemForKey(PythonString(py_name), new_file); in SetStdHandle()
645 PythonDictionary &sys_module_dict = GetSysModuleDictionary(); in EnterSession() local
646 if (sys_module_dict.IsValid()) { in EnterSession()