Lines Matching refs:PyFrameObject
12 #define OFF(x) offsetof(PyFrameObject, x)
33 frame_getlocals(PyFrameObject *f, void *closure) in frame_getlocals()
42 PyFrame_GetLineNumber(PyFrameObject *f) in PyFrame_GetLineNumber()
54 frame_getlineno(PyFrameObject *f, void *closure) in frame_getlineno()
66 frame_getlasti(PyFrameObject *f, void *closure) in frame_getlasti()
300 frame_stack_pop(PyFrameObject *f) in frame_stack_pop()
309 frame_block_unwind(PyFrameObject *f) in frame_block_unwind()
344 frame_setlineno(PyFrameObject *f, PyObject* p_new_lineno, void *Py_UNUSED(ignored)) in frame_setlineno()
499 frame_gettrace(PyFrameObject *f, void *closure) in frame_gettrace()
512 frame_settrace(PyFrameObject *f, PyObject* v, void *closure) in frame_settrace()
578 frame_dealloc(PyFrameObject *f) in frame_dealloc()
628 frame_nslots(PyFrameObject *frame) in frame_nslots()
637 frame_traverse(PyFrameObject *f, visitproc visit, void *arg) in frame_traverse()
660 frame_tp_clear(PyFrameObject *f) in frame_tp_clear()
686 frame_clear(PyFrameObject *f, PyObject *Py_UNUSED(ignored)) in frame_clear()
705 frame_sizeof(PyFrameObject *f, PyObject *Py_UNUSED(ignored)) in frame_sizeof()
714 res = sizeof(PyFrameObject) + (extras-1) * sizeof(PyObject *); in frame_sizeof()
723 frame_repr(PyFrameObject *f) in frame_repr()
743 sizeof(PyFrameObject),
777 static inline PyFrameObject*
780 PyFrameObject *f = code->co_zombieframe; in frame_alloc()
794 f = PyObject_GC_NewVar(PyFrameObject, &PyFrame_Type, extras); in frame_alloc()
809 PyFrameObject *new_f = PyObject_GC_Resize(PyFrameObject, f, extras); in frame_alloc()
828 PyFrameObject* _Py_HOT_FUNCTION
837 PyFrameObject *f = frame_alloc((PyCodeObject *)con->fc_code); in _PyFrame_New_NoTrack()
842 f->f_back = (PyFrameObject*)Py_XNewRef(tstate->frame); in _PyFrame_New_NoTrack()
862 PyFrameObject*
880 PyFrameObject *f = _PyFrame_New_NoTrack(tstate, &desc, locals); in PyFrame_New()
891 PyFrame_BlockSetup(PyFrameObject *f, int type, int handler, int level) in PyFrame_BlockSetup()
904 PyFrame_BlockPop(PyFrameObject *f) in PyFrame_BlockPop()
1013 PyFrame_FastToLocalsWithError(PyFrameObject *f) in PyFrame_FastToLocalsWithError()
1073 PyFrame_FastToLocals(PyFrameObject *f) in PyFrame_FastToLocals()
1085 PyFrame_LocalsToFast(PyFrameObject *f, int clear) in PyFrame_LocalsToFast()
1131 PyFrameObject *f = state->free_list; in _PyFrame_ClearFreeList()
1156 state->numfree, sizeof(PyFrameObject)); in _PyFrame_DebugMallocStats()
1161 PyFrame_GetCode(PyFrameObject *frame) in PyFrame_GetCode()
1171 PyFrameObject*
1172 PyFrame_GetBack(PyFrameObject *frame) in PyFrame_GetBack()
1175 PyFrameObject *back = frame->f_back; in PyFrame_GetBack()