Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dgcmodule.c64 static PyObject *delstr = NULL; variable
470 assert(delstr != NULL); in has_finalizer()
471 return _PyInstance_Lookup(op, delstr) != NULL; in has_finalizer()
833 if (delstr == NULL) { in collect()
834 delstr = PyString_InternFromString("__del__"); in collect()
835 if (delstr == NULL) in collect()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Dgcmodule.c64 static PyObject *delstr = NULL; variable
507 assert(delstr != NULL); in has_finalizer()
508 return _PyInstance_Lookup(op, delstr) != NULL; in has_finalizer()
884 if (delstr == NULL) { in collect()
885 delstr = PyString_InternFromString("__del__"); in collect()
886 if (delstr == NULL) in collect()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dclassobject.c625 static PyObject *delstr; in instance_dealloc() local
639 if (delstr == NULL) { in instance_dealloc()
640 delstr = PyString_InternFromString("__del__"); in instance_dealloc()
641 if (delstr == NULL) in instance_dealloc()
644 if (delstr && (del = instance_getattr2(inst, delstr)) != NULL) { in instance_dealloc()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dclassobject.c635 static PyObject *delstr; in instance_dealloc() local
649 if (delstr == NULL) { in instance_dealloc()
650 delstr = PyString_InternFromString("__del__"); in instance_dealloc()
651 if (delstr == NULL) in instance_dealloc()
654 if (delstr && (del = instance_getattr2(inst, delstr)) != NULL) { in instance_dealloc()