Lines Matching refs:PyFrameObject
11 #define OFF(x) offsetof(PyFrameObject, x)
25 frame_getlocals(PyFrameObject *f, void *closure) in frame_getlocals()
34 PyFrame_GetLineNumber(PyFrameObject *f) in PyFrame_GetLineNumber()
43 frame_getlineno(PyFrameObject *f, void *closure) in frame_getlineno()
67 frame_setlineno(PyFrameObject *f, PyObject* p_new_lineno, void *Py_UNUSED(ignored)) in frame_setlineno()
375 frame_gettrace(PyFrameObject *f, void *closure) in frame_gettrace()
388 frame_settrace(PyFrameObject *f, PyObject* v, void *closure) in frame_settrace()
452 static PyFrameObject *free_list = NULL;
458 frame_dealloc(PyFrameObject *f) in frame_dealloc()
500 frame_traverse(PyFrameObject *f, visitproc visit, void *arg) in frame_traverse()
527 frame_tp_clear(PyFrameObject *f) in frame_tp_clear()
558 frame_clear(PyFrameObject *f) in frame_clear()
577 frame_sizeof(PyFrameObject *f) in frame_sizeof()
586 res = sizeof(PyFrameObject) + (extras-1) * sizeof(PyObject *); in frame_sizeof()
595 frame_repr(PyFrameObject *f) in frame_repr()
614 sizeof(PyFrameObject),
656 PyFrameObject* _Py_HOT_FUNCTION
660 PyFrameObject *back = tstate->frame; in _PyFrame_New_NoTrack()
661 PyFrameObject *f; in _PyFrame_New_NoTrack()
713 f = PyObject_GC_NewVar(PyFrameObject, &PyFrame_Type, in _PyFrame_New_NoTrack()
726 PyFrameObject *new_f = PyObject_GC_Resize(PyFrameObject, f, extras); in _PyFrame_New_NoTrack()
782 PyFrameObject*
786 PyFrameObject *f = _PyFrame_New_NoTrack(tstate, code, globals, locals); in PyFrame_New()
796 PyFrame_BlockSetup(PyFrameObject *f, int type, int handler, int level) in PyFrame_BlockSetup()
808 PyFrame_BlockPop(PyFrameObject *f) in PyFrame_BlockPop()
916 PyFrame_FastToLocalsWithError(PyFrameObject *f) in PyFrame_FastToLocalsWithError()
976 PyFrame_FastToLocals(PyFrameObject *f) in PyFrame_FastToLocals()
988 PyFrame_LocalsToFast(PyFrameObject *f, int clear) in PyFrame_LocalsToFast()
1035 PyFrameObject *f = free_list; in PyFrame_ClearFreeList()
1056 numfree, sizeof(PyFrameObject)); in _PyFrame_DebugMallocStats()