Lines Matching refs:PyFrameObject
10 #define OFF(x) offsetof(PyFrameObject, x)
22 frame_getlocals(PyFrameObject *f, void *closure)
31 PyFrame_GetLineNumber(PyFrameObject *f)
40 frame_getlineno(PyFrameObject *f, void *closure)
61 frame_setlineno(PyFrameObject *f, PyObject* p_new_lineno)
329 frame_gettrace(PyFrameObject *f, void *closure)
342 frame_settrace(PyFrameObject *f, PyObject* v, void *closure)
374 In zombie mode, no field of PyFrameObject holds a reference, but
407 static PyFrameObject *free_list = NULL;
413 frame_dealloc(PyFrameObject *f)
456 frame_traverse(PyFrameObject *f, visitproc visit, void *arg)
486 frame_tp_clear(PyFrameObject *f)
519 frame_clear(PyFrameObject *f)
538 frame_sizeof(PyFrameObject *f)
546 /* subtract one as it is already included in PyFrameObject */
547 res = sizeof(PyFrameObject) + (extras-1) * sizeof(PyObject *);
566 sizeof(PyFrameObject),
608 PyFrameObject *
612 PyFrameObject *back = tstate->frame;
613 PyFrameObject *f;
665 f = PyObject_GC_NewVar(PyFrameObject, &PyFrame_Type,
678 PyFrameObject *new_f = PyObject_GC_Resize(PyFrameObject, f, extras);
737 PyFrame_BlockSetup(PyFrameObject *f, int type, int handler, int level)
749 PyFrame_BlockPop(PyFrameObject *f)
857 PyFrame_FastToLocalsWithError(PyFrameObject *f)
917 PyFrame_FastToLocals(PyFrameObject *f)
929 PyFrame_LocalsToFast(PyFrameObject *f, int clear)
976 PyFrameObject *f = free_list;
996 "free PyFrameObject",
997 numfree, sizeof(PyFrameObject));