Home
last modified time | relevance | path

Searched refs:DEBUG_SAVEALL (Results 1 – 10 of 10) 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/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
238 If :const:`DEBUG_SAVEALL` is set, then all unreachable objects will be
311 .. data:: DEBUG_SAVEALL
321 DEBUG_SAVEALL``).
/external/python/cpython3/Modules/
Dgcmodule.c124 #define DEBUG_SAVEALL (1<<5) /* save all garbage in gc.garbage */ macro
127 DEBUG_SAVEALL
930 if ((gcstate->debug & DEBUG_SAVEALL) || has_legacy_finalizer(op)) { in handle_legacy_finalizers()
994 if (gcstate->debug & DEBUG_SAVEALL) { in delete_garbage()
2037 ADD_INT(DEBUG_SAVEALL); in PyInit_gc()
2107 if (!(gcstate->debug & DEBUG_SAVEALL) in _PyGC_DumpShutdownStats()
/external/tensorflow/tensorflow/python/eager/benchmarks/resnet50/
Dresnet50_test.py243 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.py252 gc.set_debug(debug | gc.DEBUG_SAVEALL)
/external/tensorflow/tensorflow/python/framework/
Dtest_util.py929 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