Searched refs:PyCapsule_GetPointer (Results 1 – 25 of 26) sorted by relevance
12
/third_party/python/Include/ |
D | pycapsule.h | 33 PyAPI_FUNC(void *) PyCapsule_GetPointer(PyObject *capsule, const char *name);
|
/third_party/protobuf/python/google/protobuf/pyext/ |
D | message_module.cc | 113 delete (ApiImplementation*)PyCapsule_GetPointer( in INITFUNC()
|
/third_party/python/Doc/c-api/ |
D | capsule.rst | 60 .. c:function:: void* PyCapsule_GetPointer(PyObject *capsule, const char *name) 119 :c:func:`PyCapsule_GetPointer` for information on how capsule names are
|
/third_party/python/Objects/ |
D | capsule.c | 80 PyCapsule_GetPointer(PyObject *o, const char *name) in PyCapsule_GetPointer() function
|
/third_party/libxml2/python/ |
D | libxml_wrap.h | 41 #define PyCapsule_GetPointer(o, n) PyCObject_GetDesc((o)) macro
|
D | types.c | 530 xmlXPathNodeSetFreeNs((xmlNsPtr) PyCapsule_GetPointer(cap, "xmlNsPtr")); in libxml_xmlXPathDestructNsNode()
|
D | libxml.c | 3785 str = PyCapsule_GetPointer(obj, PyCapsule_GetName(obj)); in libxml_getObjDesc()
|
/third_party/python/Modules/cjkcodecs/ |
D | cjkcodecs.h | 381 map = PyCapsule_GetPointer(o, PyMultibyteCodec_CAPSULE_NAME); in importmap()
|
D | multibytecodec.c | 1956 codec = PyCapsule_GetPointer(arg, PyMultibyteCodec_CAPSULE_NAME); in _multibytecodec___create_codec()
|
/third_party/python/Modules/_ctypes/ |
D | callproc.c | 99 void *p = PyCapsule_GetPointer(ptr, CTYPES_CAPSULE_NAME_PYMEM); in pymem_destructor() 182 *pspace = (int *)PyCapsule_GetPointer(errobj, CTYPES_CAPSULE_NAME_PYMEM); in _ctypes_get_errobj()
|
D | cfield.c | 15 void *p = PyCapsule_GetPointer(ptr, CTYPES_CFIELD_CAPSULE_NAME_PYMEM); in pymem_destructor()
|
/third_party/python/PC/ |
D | python3dll.c | 125 EXPORT_FUNC(PyCapsule_GetPointer)
|
/third_party/python/Doc/data/ |
D | stable_abi.dat | 52 function,PyCapsule_GetPointer,3.2,
|
D | refcounts.dat | 168 PyCapsule_GetPointer:void*::: 169 PyCapsule_GetPointer:PyObject*:self:0: 170 PyCapsule_GetPointer:const char *:name::
|
/third_party/python/Modules/ |
D | unicodedata.c | 1315 void *capi = PyCapsule_GetPointer(capsule, PyUnicodeData_CAPSULE_NAME); in unicodedata_destroy_capi()
|
D | pyexpat.c | 1849 void *p = PyCapsule_GetPointer(op, PyExpat_CAPSULE_NAME); in pyexpat_destructor()
|
D | _testcapimodule.c | 3093 } else if (PyCapsule_GetPointer(o, capsule_name) != capsule_pointer) { in capsule_destructor() 3146 pointer2 = PyCapsule_GetPointer(object, "the wrong name"); in test_capsule() 3192 pointer2 = PyCapsule_GetPointer(object, in test_capsule()
|
D | _cursesmodule.c | 4733 void *ptr = PyCapsule_GetPointer(op, PyCurses_CAPSULE_NAME); in curses_destructor()
|
D | _datetimemodule.c | 6511 void *ptr = PyCapsule_GetPointer(op, PyDateTime_CAPSULE_NAME); in datetime_destructor()
|
D | socketmodule.c | 7045 void *capi = PyCapsule_GetPointer(capsule, PySocket_CAPSULE_NAME);
|
D | posixmodule.c | 14562 cookieValue = (DLL_DIRECTORY_COOKIE)PyCapsule_GetPointer( in os__remove_dll_directory_impl()
|
/third_party/python/Misc/ |
D | stable_abi.txt | 382 function PyCapsule_GetPointer
|
/third_party/skia/third_party/externals/libwebp/swig/ |
D | libwebp_python_wrap.c | 2747 …swig_module_info *swig_module = (swig_module_info *) PyCapsule_GetPointer(obj, SWIGPY_CAPSULE_NAME… in SWIG_Python_DestroyModule() 2806 descriptor = (swig_type_info *) PyCapsule_GetPointer(obj, NULL); in SWIG_Python_TypeQuery()
|
/third_party/flutter/skia/third_party/externals/libwebp/swig/ |
D | libwebp_python_wrap.c | 2726 …swig_module_info *swig_module = (swig_module_info *) PyCapsule_GetPointer(obj, SWIGPY_CAPSULE_NAME… in SWIG_Python_DestroyModule() 2785 descriptor = (swig_type_info *) PyCapsule_GetPointer(obj, NULL); in SWIG_Python_TypeQuery()
|
/third_party/python/Python/ |
D | compile.c | 725 c->u = (struct compiler_unit *)PyCapsule_GetPointer(capsule, CAPSULE_NAME); in compiler_exit_scope() 759 parent = (struct compiler_unit *)PyCapsule_GetPointer(capsule, CAPSULE_NAME); in compiler_set_qualname()
|
12