Lines Matching refs:PyFrameObject

12 #define OFF(x) offsetof(PyFrameObject, x)
26 frame_getlocals(PyFrameObject *f, void *closure) in frame_getlocals()
35 PyFrame_GetLineNumber(PyFrameObject *f) in PyFrame_GetLineNumber()
47 frame_getlineno(PyFrameObject *f, void *closure) in frame_getlineno()
292 frame_stack_pop(PyFrameObject *f) in frame_stack_pop()
299 frame_block_unwind(PyFrameObject *f) in frame_block_unwind()
333 frame_setlineno(PyFrameObject *f, PyObject* p_new_lineno, void *Py_UNUSED(ignored)) in frame_setlineno()
483 frame_gettrace(PyFrameObject *f, void *closure) in frame_gettrace()
496 frame_settrace(PyFrameObject *f, PyObject* v, void *closure) in frame_settrace()
563 static PyFrameObject *free_list = NULL;
568 frame_dealloc(PyFrameObject *f) in frame_dealloc()
614 frame_nslots(PyFrameObject *frame) in frame_nslots()
623 frame_traverse(PyFrameObject *f, visitproc visit, void *arg) in frame_traverse()
648 frame_tp_clear(PyFrameObject *f) in frame_tp_clear()
677 frame_clear(PyFrameObject *f, PyObject *Py_UNUSED(ignored)) in frame_clear()
696 frame_sizeof(PyFrameObject *f, PyObject *Py_UNUSED(ignored)) in frame_sizeof()
705 res = sizeof(PyFrameObject) + (extras-1) * sizeof(PyObject *); in frame_sizeof()
714 frame_repr(PyFrameObject *f) in frame_repr()
734 sizeof(PyFrameObject),
768 static inline PyFrameObject*
771 PyFrameObject *f; in frame_alloc()
788 f = PyObject_GC_NewVar(PyFrameObject, &PyFrame_Type, extras); in frame_alloc()
800 PyFrameObject *new_f = PyObject_GC_Resize(PyFrameObject, f, extras); in frame_alloc()
824 frame_get_builtins(PyFrameObject *back, PyObject *globals) in frame_get_builtins()
865 PyFrameObject* _Py_HOT_FUNCTION
877 PyFrameObject *back = tstate->frame; in _PyFrame_New_NoTrack()
883 PyFrameObject *f = frame_alloc(code); in _PyFrame_New_NoTrack()
928 PyFrameObject*
932 PyFrameObject *f = _PyFrame_New_NoTrack(tstate, code, globals, locals); in PyFrame_New()
942 PyFrame_BlockSetup(PyFrameObject *f, int type, int handler, int level) in PyFrame_BlockSetup()
955 PyFrame_BlockPop(PyFrameObject *f) in PyFrame_BlockPop()
1064 PyFrame_FastToLocalsWithError(PyFrameObject *f) in PyFrame_FastToLocalsWithError()
1124 PyFrame_FastToLocals(PyFrameObject *f) in PyFrame_FastToLocals()
1136 PyFrame_LocalsToFast(PyFrameObject *f, int clear) in PyFrame_LocalsToFast()
1182 PyFrameObject *f = free_list; in _PyFrame_ClearFreeList()
1204 numfree, sizeof(PyFrameObject)); in _PyFrame_DebugMallocStats()
1210 PyFrame_GetCode(PyFrameObject *frame) in PyFrame_GetCode()
1220 PyFrameObject*
1221 PyFrame_GetBack(PyFrameObject *frame) in PyFrame_GetBack()
1224 PyFrameObject *back = frame->f_back; in PyFrame_GetBack()