Home
last modified time | relevance | path

Searched refs:m_self (Results 1 – 5 of 5) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dmethodobject.c22 free_list = (PyCFunctionObject *)(op->m_self); in PyCFunction_NewEx()
33 op->m_self = self; in PyCFunction_NewEx()
57 return ((PyCFunctionObject *)op) -> m_self; in PyCFunction_GetSelf()
134 Py_XDECREF(m->m_self); in meth_dealloc()
137 m->m_self = (PyObject *)free_list; in meth_dealloc()
166 Py_VISIT(m->m_self); in meth_traverse()
180 self = m->m_self; in meth_get__self__()
204 if (m->m_self == NULL) in meth_repr()
209 m->m_self->ob_type->tp_name, in meth_repr()
210 m->m_self); in meth_repr()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dmethodobject.c22 free_list = (PyCFunctionObject *)(op->m_self); in PyCFunction_NewEx()
33 op->m_self = self; in PyCFunction_NewEx()
57 return ((PyCFunctionObject *)op) -> m_self; in PyCFunction_GetSelf()
134 Py_XDECREF(m->m_self); in meth_dealloc()
137 m->m_self = (PyObject *)free_list; in meth_dealloc()
166 Py_VISIT(m->m_self); in meth_traverse()
180 self = m->m_self; in meth_get__self__()
204 if (m->m_self == NULL) in meth_repr()
209 m->m_self->ob_type->tp_name, in meth_repr()
210 m->m_self); in meth_repr()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dmethodobject.h32 (((PyCFunctionObject *)func) -> m_self)
84 PyObject *m_self; /* Passed as 'self' arg to the C func, can be NULL */ member
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dmethodobject.h32 (((PyCFunctionObject *)func) -> m_self)
84 PyObject *m_self; /* Passed as 'self' arg to the C func, can be NULL */ member
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
D_lsprof.c178 if (fn->m_self == NULL) { in normalizeUserObj()
207 PyObject *self = fn->m_self; in normalizeUserObj()