Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_atexit.py43 exfunc = sys.exitfunc
44 sys.exitfunc = self.h1
50 sys.exitfunc = exfunc
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Datexit.py51 register(sys.exitfunc)
52 sys.exitfunc = _run_exitfuncs
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Datexit.py51 register(sys.exitfunc)
52 sys.exitfunc = _run_exitfuncs
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dpythonrun.c1720 PyObject *exitfunc = PySys_GetObject("exitfunc"); in call_sys_exitfunc() local
1722 if (exitfunc) { in call_sys_exitfunc()
1724 Py_INCREF(exitfunc); in call_sys_exitfunc()
1726 res = PyEval_CallObject(exitfunc, (PyObject *)NULL); in call_sys_exitfunc()
1733 Py_DECREF(exitfunc); in call_sys_exitfunc()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dpythonrun.c1745 PyObject *exitfunc = PySys_GetObject("exitfunc"); in call_sys_exitfunc() local
1747 if (exitfunc) { in call_sys_exitfunc()
1749 Py_INCREF(exitfunc); in call_sys_exitfunc()
1751 res = PyEval_CallObject(exitfunc, (PyObject *)NULL); in call_sys_exitfunc()
1758 Py_DECREF(exitfunc); in call_sys_exitfunc()