Home
last modified time | relevance | path

Searched refs:PyCFunction_New (Results 1 – 11 of 11) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dmethodobject.c373 return PyCFunction_New(ml, self); in Py_FindMethodInChain()
420 #undef PyCFunction_New
421 PyAPI_FUNC(PyObject *) PyCFunction_New(PyMethodDef *, PyObject *);
424 PyCFunction_New(PyMethodDef *ml, PyObject *self) in PyCFunction_New() function
Ddescrobject.c115 return PyCFunction_New(descr->d_method, type); in classmethod_get()
125 return PyCFunction_New(descr->d_method, obj); in method_get()
239 func = PyCFunction_New(descr->d_method, self); in methoddescr_call()
291 func = PyCFunction_New(descr->d_method, self); in classmethoddescr_call()
Dtypeobject.c3596 PyObject *cfunc = PyCFunction_New(meth, NULL);
4844 func = PyCFunction_New(tp_new_methoddef, (PyObject *)type);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dmethodobject.c373 return PyCFunction_New(ml, self); in Py_FindMethodInChain()
420 #undef PyCFunction_New
421 PyAPI_FUNC(PyObject *) PyCFunction_New(PyMethodDef *, PyObject *);
424 PyCFunction_New(PyMethodDef *ml, PyObject *self) in PyCFunction_New() function
Ddescrobject.c115 return PyCFunction_New(descr->d_method, type); in classmethod_get()
125 return PyCFunction_New(descr->d_method, obj); in method_get()
239 func = PyCFunction_New(descr->d_method, self); in methoddescr_call()
259 func = PyCFunction_New(descr->d_method, (PyObject *)descr->d_type); in classmethoddescr_call()
Dtypeobject.c3562 PyObject *cfunc = PyCFunction_New(meth, NULL);
4792 func = PyCFunction_New(tp_new_methoddef, (PyObject *)type);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dmethodobject.h48 #define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dmethodobject.h48 #define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL) macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dthreadmodule.c365 self->wr_callback = PyCFunction_New(&wr_callback_def, wr); in local_new()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dcodecs.c841 PyObject *func = PyCFunction_New(&methods[i].def, NULL); in _PyCodecRegistry_Init()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dcodecs.c858 PyObject *func = PyCFunction_New(&methods[i].def, NULL); in _PyCodecRegistry_Init()