Home
last modified time | relevance | path

Searched refs:PyFunction_SetClosure (Results 1 – 15 of 15) sorted by relevance

/aosp_15_r20/external/python/cpython2/Include/
Dfuncobject.h51 PyAPI_FUNC(int) PyFunction_SetClosure(PyObject *, PyObject *);
/aosp_15_r20/external/python/cpython3/Include/cpython/
Dfuncobject.h75 PyAPI_FUNC(int) PyFunction_SetClosure(PyObject *, PyObject *);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/cpython/
Dfuncobject.h75 PyAPI_FUNC(int) PyFunction_SetClosure(PyObject *, PyObject *);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/cpython/
Dfuncobject.h75 PyAPI_FUNC(int) PyFunction_SetClosure(PyObject *, PyObject *);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/cpython/
Dfuncobject.h75 PyAPI_FUNC(int) PyFunction_SetClosure(PyObject *, PyObject *);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/cpython/
Dfuncobject.h75 PyAPI_FUNC(int) PyFunction_SetClosure(PyObject *, PyObject *);
/aosp_15_r20/external/python/cpython2/Doc/c-api/
Dfunction.rst78 .. c:function:: int PyFunction_SetClosure(PyObject *op, PyObject *closure)
/aosp_15_r20/external/python/cpython3/Doc/c-api/
Dfunction.rst92 .. c:function:: int PyFunction_SetClosure(PyObject *op, PyObject *closure)
/aosp_15_r20/external/python/cpython2/Doc/data/
Drefcounts.dat462 PyFunction_SetClosure:int:::
463 PyFunction_SetClosure:PyObject*:op:0:
464 PyFunction_SetClosure:PyObject*:closure:+1:
/aosp_15_r20/external/python/cpython2/Objects/
Dfuncobject.c134 PyFunction_SetClosure(PyObject *op, PyObject *closure) in PyFunction_SetClosure() function
/aosp_15_r20/external/python/cpython3/Objects/
Dfuncobject.c257 PyFunction_SetClosure(PyObject *op, PyObject *closure) in PyFunction_SetClosure() function
/aosp_15_r20/external/python/cpython2/PC/os2emx/
Dpython27.def342 "PyFunction_SetClosure"
/aosp_15_r20/external/python/cpython3/Doc/data/
Drefcounts.dat940 PyFunction_SetClosure:int:::
941 PyFunction_SetClosure:PyObject*:op:0:
942 PyFunction_SetClosure:PyObject*:closure:+1:
Dpython3.11.abi269 …<elf-symbol name='PyFunction_SetClosure' type='func-type' binding='global-binding' visibility='def…
8376PyFunction_SetClosure' mangled-name='PyFunction_SetClosure' filepath='Objects/funcobject.c' line='…
/aosp_15_r20/external/python/cpython2/Python/
Dceval.c3094 if (PyFunction_SetClosure(x, v) != 0) { in PyEval_EvalFrameEx()