Home
last modified time | relevance | path

Searched refs:co_zombieframe (Results 1 – 6 of 6) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dcode.h28 void *co_zombieframe; /* for optimization only (see frameobject.c) */ member
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dcode.h28 void *co_zombieframe; /* for optimization only (see frameobject.c) */ member
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dframeobject.c478 if (co->co_zombieframe == NULL) in frame_dealloc()
479 co->co_zombieframe = f; in frame_dealloc()
669 if (code->co_zombieframe != NULL) { in PyFrame_New()
670 f = code->co_zombieframe; in PyFrame_New()
671 code->co_zombieframe = NULL; in PyFrame_New()
Dcodeobject.c105 co->co_zombieframe = NULL; in PyCode_New()
316 if (co->co_zombieframe != NULL) in code_dealloc()
317 PyObject_GC_Del(co->co_zombieframe); in code_dealloc()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dframeobject.c476 if (co->co_zombieframe == NULL) in frame_dealloc()
477 co->co_zombieframe = f; in frame_dealloc()
667 if (code->co_zombieframe != NULL) { in PyFrame_New()
668 f = code->co_zombieframe; in PyFrame_New()
669 code->co_zombieframe = NULL; in PyFrame_New()
Dcodeobject.c105 co->co_zombieframe = NULL; in PyCode_New()
316 if (co->co_zombieframe != NULL) in code_dealloc()
317 PyObject_GC_Del(co->co_zombieframe); in code_dealloc()