Searched refs:_PyObject_GenericGetAttrWithDict (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython2/Modules/ |
D | threadmodule.c | 558 return _PyObject_GenericGetAttrWithDict((PyObject *)self, name, ldict); in local_getattro() 564 return _PyObject_GenericGetAttrWithDict((PyObject *)self, name, ldict); in local_getattro()
|
/external/python/cpython3/Include/cpython/ |
D | object.h | 340 _PyObject_GenericGetAttrWithDict(PyObject *, PyObject *, PyObject *, int);
|
/external/python/cpython3/Objects/ |
D | object.c | 917 *result = _PyObject_GenericGetAttrWithDict(v, name, NULL, 1); in _PyObject_LookupAttr() 1165 _PyObject_GenericGetAttrWithDict(PyObject *obj, PyObject *name, in _PyObject_GenericGetAttrWithDict() function 1280 return _PyObject_GenericGetAttrWithDict(obj, name, NULL, 0); in PyObject_GenericGetAttr()
|
/external/python/cpython3/Modules/ |
D | _threadmodule.c | 972 return _PyObject_GenericGetAttrWithDict( in local_getattro() 985 return _PyObject_GenericGetAttrWithDict( in local_getattro()
|
/external/python/cpython2/Include/ |
D | object.h | 498 _PyObject_GenericGetAttrWithDict(PyObject *, PyObject *, PyObject *);
|
/external/python/cpython2/Objects/ |
D | object.c | 1332 _PyObject_GenericGetAttrWithDict(PyObject *obj, PyObject *name, PyObject *dict) in _PyObject_GenericGetAttrWithDict() function 1466 return _PyObject_GenericGetAttrWithDict(obj, name, NULL); in PyObject_GenericGetAttr()
|