Lines Matching refs:PyFrameLocalsProxyObject
127 PyFrameObject* frame = ((PyFrameLocalsProxyObject*)self)->frame; in framelocalsproxy_getitem()
158 PyFrameObject* frame = ((PyFrameLocalsProxyObject*)self)->frame; in framelocalsproxy_setitem()
272 PyFrameObject *frame = ((PyFrameLocalsProxyObject*)self)->frame; in framelocalsproxy_keys()
313 Py_CLEAR(((PyFrameLocalsProxyObject*)self)->frame); in framelocalsproxy_dealloc()
340 PyFrameLocalsProxyObject *self = (PyFrameLocalsProxyObject *)type->tp_alloc(type, 0); in framelocalsproxy_new()
345 ((PyFrameLocalsProxyObject*)self)->frame = (PyFrameObject*)Py_NewRef(frame); in framelocalsproxy_new()
353 Py_CLEAR(((PyFrameLocalsProxyObject*)self)->frame); in framelocalsproxy_tp_clear()
360 Py_VISIT(((PyFrameLocalsProxyObject*)self)->frame); in framelocalsproxy_visit()
382 …bool result = ((PyFrameLocalsProxyObject*)self)->frame == ((PyFrameLocalsProxyObject*)other)->fram… in framelocalsproxy_richcompare()
477 PyFrameObject *frame = ((PyFrameLocalsProxyObject*)self)->frame; in framelocalsproxy_values()
513 PyFrameObject *frame = ((PyFrameLocalsProxyObject*)self)->frame; in framelocalsproxy_items()
569 PyFrameObject *frame = ((PyFrameLocalsProxyObject*)self)->frame; in framelocalsproxy_length()
589 PyFrameObject *frame = ((PyFrameLocalsProxyObject*)self)->frame; in framelocalsproxy_contains()
700 PyFrameObject *frame = ((PyFrameLocalsProxyObject*)self)->frame; in framelocalsproxy_pop()
816 .tp_basicsize = sizeof(PyFrameLocalsProxyObject),