HomeSort by relevance Sort by last modified time
    Searched refs:finalizers (Results 1 - 6 of 6) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
gcmodule.c 532 /* Move the objects in unreachable with __del__ methods into `finalizers`.
533 * Objects moved into `finalizers` have gc_refs set to GC_REACHABLE; the
537 move_finalizers(PyGC_Head *unreachable, PyGC_Head *finalizers)
542 /* March over unreachable. Move objects with finalizers into
543 * `finalizers`.
552 gc_list_move(gc, finalizers);
572 /* Move objects that are reachable from finalizers, from the unreachable set
573 * into finalizers set.
576 move_finalizer_reachable(PyGC_Head *finalizers)
579 PyGC_Head *gc = finalizers->gc.gc_next;
880 PyGC_Head finalizers; \/* objects with, & reachable from, __del__ *\/ local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
gcmodule.c 481 /* Move the objects in unreachable with __del__ methods into `finalizers`.
482 * Objects moved into `finalizers` have gc_refs set to GC_REACHABLE; the
486 move_finalizers(PyGC_Head *unreachable, PyGC_Head *finalizers)
491 /* March over unreachable. Move objects with finalizers into
492 * `finalizers`.
501 gc_list_move(gc, finalizers);
521 /* Move objects that are reachable from finalizers, from the unreachable set
522 * into finalizers set.
525 move_finalizer_reachable(PyGC_Head *finalizers)
528 PyGC_Head *gc = finalizers->gc.gc_next;
829 PyGC_Head finalizers; \/* objects with, & reachable from, __del__ *\/ local
    [all...]
  /external/python/cpython2/Modules/
gcmodule.c 532 /* Move the objects in unreachable with __del__ methods into `finalizers`.
533 * Objects moved into `finalizers` have gc_refs set to GC_REACHABLE; the
537 move_finalizers(PyGC_Head *unreachable, PyGC_Head *finalizers)
542 /* March over unreachable. Move objects with finalizers into
543 * `finalizers`.
552 gc_list_move(gc, finalizers);
572 /* Move objects that are reachable from finalizers, from the unreachable set
573 * into finalizers set.
576 move_finalizer_reachable(PyGC_Head *finalizers)
579 PyGC_Head *gc = finalizers->gc.gc_next
877 PyGC_Head finalizers; \/* objects with, & reachable from, __del__ *\/ local
    [all...]
  /external/python/setuptools/pkg_resources/tests/
test_pkg_resources.py 47 finalizers = [] variable in class:TestZipProvider
79 cls.finalizers.append(EggRemover(subdir))
80 cls.finalizers.append(EggRemover(egg.name))
84 for finalizer in cls.finalizers:
  /external/python/cpython3/Modules/
gcmodule.c 428 /* Move the objects in unreachable with tp_del slots into `finalizers`.
429 * Objects moved into `finalizers` have gc_refs set to GC_REACHABLE; the
433 move_legacy_finalizers(PyGC_Head *unreachable, PyGC_Head *finalizers)
438 /* March over unreachable. Move objects with finalizers into
439 * `finalizers`.
448 gc_list_move(gc, finalizers);
468 /* Move objects that are reachable from finalizers, from the unreachable set
469 * into finalizers set.
472 move_legacy_finalizer_reachable(PyGC_Head *finalizers)
475 PyGC_Head *gc = finalizers->gc.gc_next
806 PyGC_Head finalizers; \/* objects with, & reachable from, __del__ *\/ local
    [all...]
  /external/grpc-grpc/src/csharp/Grpc.Core/
GrpcEnvironment.cs 456 // - .NET core doesn't run finalizers on shutdown, so there's no risk of getting
465 // when the framework attempts to run the finalizers for SafeHandle object representing the native
466 // grpc objects. The finalizers calls the native grpc_*_destroy methods (e.g. grpc_server_destroy)

Completed in 2232 milliseconds