HomeSort by relevance Sort by last modified time
    Searched refs:PyMethodDef (Results 1 - 25 of 245) sorted by null

1 2 3 4 5 6 7 8 910

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
methodobject.h 37 struct PyMethodDef {
44 typedef struct PyMethodDef PyMethodDef;
46 PyAPI_FUNC(PyObject *) Py_FindMethod(PyMethodDef[], PyObject *, const char *);
49 PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,
74 PyMethodDef *methods; /* Methods of this type */
83 PyMethodDef *m_ml; /* Description of the C function to call */
descrobject.h 51 PyMethodDef *d_method;
75 PyAPI_FUNC(PyObject *) PyDescr_NewMethod(PyTypeObject *, PyMethodDef *);
76 PyAPI_FUNC(PyObject *) PyDescr_NewClassMethod(PyTypeObject *, PyMethodDef *);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
methodobject.h 37 struct PyMethodDef {
44 typedef struct PyMethodDef PyMethodDef;
46 PyAPI_FUNC(PyObject *) Py_FindMethod(PyMethodDef[], PyObject *, const char *);
49 PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,
74 PyMethodDef *methods; /* Methods of this type */
83 PyMethodDef *m_ml; /* Description of the C function to call */
descrobject.h 51 PyMethodDef *d_method;
75 PyAPI_FUNC(PyObject *) PyDescr_NewMethod(PyTypeObject *, PyMethodDef *);
76 PyAPI_FUNC(PyObject *) PyDescr_NewClassMethod(PyTypeObject *, PyMethodDef *);
  /prebuilts/gdb/darwin-x86/include/python2.7/
methodobject.h 37 struct PyMethodDef {
44 typedef struct PyMethodDef PyMethodDef;
46 PyAPI_FUNC(PyObject *) Py_FindMethod(PyMethodDef[], PyObject *, const char *);
49 PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,
74 PyMethodDef *methods; /* Methods of this type */
83 PyMethodDef *m_ml; /* Description of the C function to call */
descrobject.h 51 PyMethodDef *d_method;
75 PyAPI_FUNC(PyObject *) PyDescr_NewMethod(PyTypeObject *, PyMethodDef *);
76 PyAPI_FUNC(PyObject *) PyDescr_NewClassMethod(PyTypeObject *, PyMethodDef *);
  /prebuilts/gdb/linux-x86/include/python2.7/
methodobject.h 37 struct PyMethodDef {
44 typedef struct PyMethodDef PyMethodDef;
46 PyAPI_FUNC(PyObject *) Py_FindMethod(PyMethodDef[], PyObject *, const char *);
49 PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,
74 PyMethodDef *methods; /* Methods of this type */
83 PyMethodDef *m_ml; /* Description of the C function to call */
descrobject.h 51 PyMethodDef *d_method;
75 PyAPI_FUNC(PyObject *) PyDescr_NewMethod(PyTypeObject *, PyMethodDef *);
76 PyAPI_FUNC(PyObject *) PyDescr_NewClassMethod(PyTypeObject *, PyMethodDef *);
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
methodobject.h 37 struct PyMethodDef {
44 typedef struct PyMethodDef PyMethodDef;
46 PyAPI_FUNC(PyObject *) Py_FindMethod(PyMethodDef[], PyObject *, const char *);
49 PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,
74 PyMethodDef *methods; /* Methods of this type */
83 PyMethodDef *m_ml; /* Description of the C function to call */
descrobject.h 51 PyMethodDef *d_method;
75 PyAPI_FUNC(PyObject *) PyDescr_NewMethod(PyTypeObject *, PyMethodDef *);
76 PyAPI_FUNC(PyObject *) PyDescr_NewClassMethod(PyTypeObject *, PyMethodDef *);
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
methodobject.h 37 struct PyMethodDef {
44 typedef struct PyMethodDef PyMethodDef;
46 PyAPI_FUNC(PyObject *) Py_FindMethod(PyMethodDef[], PyObject *, const char *);
49 PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,
74 PyMethodDef *methods; /* Methods of this type */
83 PyMethodDef *m_ml; /* Description of the C function to call */
descrobject.h 51 PyMethodDef *d_method;
75 PyAPI_FUNC(PyObject *) PyDescr_NewMethod(PyTypeObject *, PyMethodDef *);
76 PyAPI_FUNC(PyObject *) PyDescr_NewClassMethod(PyTypeObject *, PyMethodDef *);
  /external/autotest/client/deps/lansim/src/
pyiftun.c 22 static PyMethodDef pyiftun_methods[] = {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
cryptmodule.c 40 static PyMethodDef crypt_methods[] = {
future_builtins.c 71 static PyMethodDef module_functions[] = {
timingmodule.c 45 static PyMethodDef timing_methods[] = {
xxsubtype.c 66 static PyMethodDef spamlist_methods[] = {
171 static PyMethodDef spamdict_methods[] = {
255 static PyMethodDef xxsubtype_functions[] = {
md5module.c 145 static PyMethodDef md5_methods[] = {
292 static PyMethodDef md5_functions[] = {
  /external/e2fsprogs/contrib/python-uuid/
uuid.c 15 static PyMethodDef _uuid_methods[] = {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
future_builtins.c 71 static PyMethodDef module_functions[] = {
xxsubtype.c 66 static PyMethodDef spamlist_methods[] = {
171 static PyMethodDef spamdict_methods[] = {
255 static PyMethodDef xxsubtype_functions[] = {
md5module.c 158 static PyMethodDef md5_methods[] = {
316 static PyMethodDef md5_functions[] = {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
methodobject.c 17 PyCFunction_NewEx(PyMethodDef *ml, PyObject *self, PyObject *module)
322 PyMethodDef *ml;
368 PyMethodDef *ml = chain->methods;
384 Py_FindMethod(PyMethodDef *methods, PyObject *self, const char *name)
421 PyAPI_FUNC(PyObject *) PyCFunction_New(PyMethodDef *, PyObject *);
424 PyCFunction_New(PyMethodDef *ml, PyObject *self)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
methodobject.c 17 PyCFunction_NewEx(PyMethodDef *ml, PyObject *self, PyObject *module)
322 PyMethodDef *ml;
368 PyMethodDef *ml = chain->methods;
384 Py_FindMethod(PyMethodDef *methods, PyObject *self, const char *name)
421 PyAPI_FUNC(PyObject *) PyCFunction_New(PyMethodDef *, PyObject *);
424 PyCFunction_New(PyMethodDef *ml, PyObject *self)
  /device/linaro/bootloader/edk2/BaseTools/Source/C/PyUtility/
PyUtility.c 96 STATIC PyMethodDef PyUtility_Funcs[] = {

Completed in 3331 milliseconds

1 2 3 4 5 6 7 8 910