Home
last modified time | relevance | path

Searched refs:PyCFunction_NewEx (Results 1 – 23 of 23) sorted by relevance

/aosp_15_r20/external/python/cpython3/Include/
Dmethodobject.h66 #define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL)
69 PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,
73 #define PyCFunction_NewEx(ML, SELF, MOD) PyCMethod_New((ML), (SELF), (MOD), NULL) macro
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/
Dmethodobject.h66 #define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL)
69 PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,
73 #define PyCFunction_NewEx(ML, SELF, MOD) PyCMethod_New((ML), (SELF), (MOD), NULL) macro
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/
Dmethodobject.h66 #define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL)
69 PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,
73 #define PyCFunction_NewEx(ML, SELF, MOD) PyCMethod_New((ML), (SELF), (MOD), NULL) macro
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/
Dmethodobject.h66 #define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL)
69 PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,
73 #define PyCFunction_NewEx(ML, SELF, MOD) PyCMethod_New((ML), (SELF), (MOD), NULL) macro
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/
Dmethodobject.h66 #define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL)
69 PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,
73 #define PyCFunction_NewEx(ML, SELF, MOD) PyCMethod_New((ML), (SELF), (MOD), NULL) macro
/aosp_15_r20/external/python/cpython2/Include/
Dmethodobject.h48 #define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL)
49 PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,
/aosp_15_r20/external/python/cpython3/Objects/
Dmethodobject.c14 #undef PyCFunction_NewEx
34 return PyCFunction_NewEx(ml, self, NULL); in PyCFunction_New()
38 PyCFunction_NewEx(PyMethodDef *ml, PyObject *self, PyObject *module) in PyCFunction_NewEx() function
Dmoduleobject.c171 func = PyCFunction_NewEx(fdef, (PyObject*)module, name); in _add_methods_to_object()
Ddescrobject.c168 return PyCFunction_NewEx(descr->d_method, obj, NULL); in method_get()
Dtypeobject.c5666 PyObject *cfunc = PyCFunction_NewEx(meth, (PyObject*)type, NULL); in type_add_method()
7192 PyObject *func = PyCFunction_NewEx(tp_new_methoddef, (PyObject *)type, NULL); in add_tp_new_wrapper()
/aosp_15_r20/external/python/cpython2/Objects/
Dmethodobject.c17 PyCFunction_NewEx(PyMethodDef *ml, PyObject *self, PyObject *module) in PyCFunction_NewEx() function
426 return PyCFunction_NewEx(ml, self, NULL); in PyCFunction_New()
/aosp_15_r20/external/python/cpython3/Modules/
Dgetpath.c561 PyObject *f = PyCFunction_NewEx(m, NULL, NULL); in funcs_to_dict()
572 PyObject *f = PyCFunction_NewEx(m2, NULL, NULL); in funcs_to_dict()
D_abc.c187 destroy_cb = PyCFunction_NewEx(&_destroy_def, wr, NULL); in _add_to_weak_set()
D_threadmodule.c817 self->wr_callback = PyCFunction_NewEx(&wr_callback_def, wr, NULL); in local_new()
D_testcapimodule.c3979 return PyCFunction_NewEx(&ml, self, NULL); in create_cfunction()
/aosp_15_r20/external/python/cpython2/Python/
Dmodsupport.c81 v = PyCFunction_NewEx(ml, passthrough, n); in Py_InitModule4()
/aosp_15_r20/external/python/cpython2/PC/os2emx/
Dpython27.def430 "PyCFunction_NewEx"
/aosp_15_r20/external/python/cpython3/PC/
Dpython3dll.c142 EXPORT_FUNC(PyCFunction_NewEx)
/aosp_15_r20/external/python/cpython3/Doc/data/
Dstable_abi.dat50 function,PyCFunction_NewEx,3.2,,
Dpython3.11.abi51 …<elf-symbol name='PyCFunction_NewEx' type='func-type' binding='global-binding' visibility='default…
9096PyCFunction_NewEx' mangled-name='PyCFunction_NewEx' filepath='Objects/methodobject.c' line='38' co…
/aosp_15_r20/external/python/cpython3/Python/
Dcodecs.c1517 PyObject *func = PyCFunction_NewEx(&methods[i].def, NULL, NULL); in _PyCodecRegistry_Init()
/aosp_15_r20/external/python/cpython3/Misc/NEWS.d/
D3.9.0a5.rst1227 :c:func:`PyDescr_NewMethod` and :c:func:`PyCFunction_NewEx` now include the
/aosp_15_r20/external/python/cpython3/Misc/
Dstable_abi.toml456 [function.PyCFunction_NewEx]