Home
last modified time | relevance | path

Searched refs:PyFrameLocalsProxyObject (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Objects/
Dframeobject.c127 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()
[all …]
/external/python/cpython3/Include/cpython/
Dframeobject.h35 } PyFrameLocalsProxyObject; typedef