Home
last modified time | relevance | path

Searched refs:_PyObject_GenericGetAttrWithDict (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython2/Modules/
Dthreadmodule.c558 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/
Dobject.h340 _PyObject_GenericGetAttrWithDict(PyObject *, PyObject *, PyObject *, int);
/external/python/cpython3/Objects/
Dobject.c917 *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.c972 return _PyObject_GenericGetAttrWithDict( in local_getattro()
985 return _PyObject_GenericGetAttrWithDict( in local_getattro()
/external/python/cpython2/Include/
Dobject.h498 _PyObject_GenericGetAttrWithDict(PyObject *, PyObject *, PyObject *);
/external/python/cpython2/Objects/
Dobject.c1332 _PyObject_GenericGetAttrWithDict(PyObject *obj, PyObject *name, PyObject *dict) in _PyObject_GenericGetAttrWithDict() function
1466 return _PyObject_GenericGetAttrWithDict(obj, name, NULL); in PyObject_GenericGetAttr()