Home
last modified time | relevance | path

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

/external/python/cpython2/Doc/library/
Dgc.rst19 ``gc.DEBUG_SAVEALL``, causing garbage-collected objects to be saved in
190 If :const:`DEBUG_SAVEALL` is set, then all unreachable objects will be added to
226 .. data:: DEBUG_SAVEALL
236 DEBUG_INSTANCES | DEBUG_OBJECTS | DEBUG_SAVEALL``).
/external/python/cpython3/Modules/
Dgcmodule.c52 #define DEBUG_SAVEALL (1<<5) /* save all garbage in gc.garbage */ macro
55 DEBUG_SAVEALL
665 if ((_PyRuntime.gc.debug & DEBUG_SAVEALL) || has_legacy_finalizer(op)) { in handle_legacy_finalizers()
755 if (_PyRuntime.gc.debug & DEBUG_SAVEALL) { in delete_garbage()
1555 ADD_INT(DEBUG_SAVEALL); in PyInit_gc()
1614 if (!(_PyRuntime.gc.debug & DEBUG_SAVEALL) in _PyGC_DumpShutdownStats()
/external/python/cpython2/Modules/
Dgcmodule.c161 #define DEBUG_SAVEALL (1<<5) /* save all garbage in gc.garbage */ macro
166 DEBUG_SAVEALL
788 if ((debug & DEBUG_SAVEALL) || has_finalizer(op)) { in handle_finalizers()
811 if (debug & DEBUG_SAVEALL) { in delete_garbage()
1422 ADD_INT(DEBUG_SAVEALL); in initgc()
/external/python/cpython3/Doc/library/
Dgc.rst20 ``gc.DEBUG_SAVEALL``, causing garbage-collected objects to be saved in
214 If :const:`DEBUG_SAVEALL` is set, then all unreachable objects will be
287 .. data:: DEBUG_SAVEALL
297 DEBUG_SAVEALL``).
/external/tensorflow/tensorflow/contrib/eager/python/examples/resnet50/
Dresnet50_test.py157 gc.set_debug(gc.DEBUG_SAVEALL)
/external/python/cpython2/Lib/test/
Dtest_gc.py208 gc.set_debug(debug | gc.DEBUG_SAVEALL)
/external/python/cpython3/Lib/test/
Dtest_gc.py236 gc.set_debug(debug | gc.DEBUG_SAVEALL)
/external/tensorflow/tensorflow/contrib/eager/python/
Dnetwork_test.py448 gc.set_debug(gc.DEBUG_SAVEALL)
/external/tensorflow/tensorflow/python/framework/
Dtest_util.py761 gc.set_debug(gc.DEBUG_SAVEALL)
/external/python/cpython2/Misc/
DHISTORY8604 - gc: Add DEBUG_SAVEALL option. When enabled all garbage objects
/external/python/cpython3/Misc/
DHISTORY25983 - gc: Add DEBUG_SAVEALL option. When enabled all garbage objects