Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/
Dframeobject.c485 if (co->co_zombieframe == NULL) in frame_dealloc()
486 co->co_zombieframe = f; in frame_dealloc()
700 if (code->co_zombieframe != NULL) { in _PyFrame_New_NoTrack()
701 f = code->co_zombieframe; in _PyFrame_New_NoTrack()
702 code->co_zombieframe = NULL; in _PyFrame_New_NoTrack()
Dcodeobject.c218 co->co_zombieframe = NULL; in PyCode_New()
456 if (co->co_zombieframe != NULL) in code_dealloc()
457 PyObject_GC_Del(co->co_zombieframe); in code_dealloc()
/external/python/cpython2/Objects/
Dframeobject.c512 if (co->co_zombieframe == NULL) in frame_dealloc()
513 co->co_zombieframe = f; in frame_dealloc()
703 if (code->co_zombieframe != NULL) { in PyFrame_New()
704 f = code->co_zombieframe; in PyFrame_New()
705 code->co_zombieframe = NULL; in PyFrame_New()
Dcodeobject.c145 co->co_zombieframe = NULL; in PyCode_New()
356 if (co->co_zombieframe != NULL) in code_dealloc()
357 PyObject_GC_Del(co->co_zombieframe); in code_dealloc()
/external/python/cpython2/Include/
Dcode.h28 void *co_zombieframe; /* for optimization only (see frameobject.c) */ member
/external/python/cpython3/Include/
Dcode.h45 void *co_zombieframe; /* for optimization only (see frameobject.c) */ member