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

1 2

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
pycapsule.h 33 PyAPI_FUNC(void *) PyCapsule_GetPointer(PyObject *capsule, const char *name);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
pycapsule.h 33 PyAPI_FUNC(void *) PyCapsule_GetPointer(PyObject *capsule, const char *name);
  /external/python/cpython2/Include/
pycapsule.h 33 PyAPI_FUNC(void *) PyCapsule_GetPointer(PyObject *capsule, const char *name);
  /external/python/cpython3/Include/
pycapsule.h 33 PyAPI_FUNC(void *) PyCapsule_GetPointer(PyObject *capsule, const char *name);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
cobject.c 70 return (void *)PyCapsule_GetPointer(self, name);
capsule.c 80 PyCapsule_GetPointer(PyObject *o, const char *name)
84 if (!is_legal_capsule(capsule, "PyCapsule_GetPointer")) {
89 PyErr_SetString(PyExc_ValueError, "PyCapsule_GetPointer called with incorrect name");
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
cobject.c 70 return (void *)PyCapsule_GetPointer(self, name);
capsule.c 80 PyCapsule_GetPointer(PyObject *o, const char *name)
84 if (!is_legal_capsule(capsule, "PyCapsule_GetPointer")) {
89 PyErr_SetString(PyExc_ValueError, "PyCapsule_GetPointer called with incorrect name");
  /external/python/cpython2/Doc/includes/
capsulethunk.h 31 #define PyCapsule_GetPointer(capsule, name) \
  /external/python/cpython2/Objects/
cobject.c 70 return (void *)PyCapsule_GetPointer(self, name);
capsule.c 80 PyCapsule_GetPointer(PyObject *o, const char *name)
84 if (!is_legal_capsule(capsule, "PyCapsule_GetPointer")) {
89 PyErr_SetString(PyExc_ValueError, "PyCapsule_GetPointer called with incorrect name");
  /external/python/cpython3/Doc/includes/
capsulethunk.h 31 #define PyCapsule_GetPointer(capsule, name) \
  /external/python/cpython3/Objects/
capsule.c 80 PyCapsule_GetPointer(PyObject *o, const char *name)
84 if (!is_legal_capsule(capsule, "PyCapsule_GetPointer")) {
89 PyErr_SetString(PyExc_ValueError, "PyCapsule_GetPointer called with incorrect name");
  /external/python/cpython2/Modules/_ctypes/
ctypes.h 459 void *p = PyCapsule_GetPointer(ptr, name); \
469 (PyCapsule_GetPointer(capsule, name))
  /external/tensorflow/tensorflow/python/
pywrap_tfe.i 182 $1 = (TFE_Context*)PyCapsule_GetPointer($input, nullptr);
  /external/libxml2/python/
libxml_wrap.h 41 #define PyCapsule_GetPointer(o, n) PyCObject_GetDesc((o))
types.c 406 xmlXPathNodeSetFreeNs((xmlNsPtr) PyCapsule_GetPointer(cap, "xmlNsPtr"));
  /external/python/cpython3/Modules/cjkcodecs/
cjkcodecs.h 379 map = PyCapsule_GetPointer(o, PyMultibyteCodec_CAPSULE_NAME);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
_testcapimodule.c     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/cjkcodecs/
cjkcodecs.h 372 map = PyCapsule_GetPointer(o, PyMultibyteCodec_CAPSULE_NAME);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/cjkcodecs/
cjkcodecs.h 372 map = PyCapsule_GetPointer(o, PyMultibyteCodec_CAPSULE_NAME);
  /external/python/cpython2/Modules/cjkcodecs/
cjkcodecs.h 376 map = PyCapsule_GetPointer(o, PyMultibyteCodec_CAPSULE_NAME);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
getargs.c 148 void *ptr = PyCapsule_GetPointer(self, GETARGS_CAPSULE_NAME_CLEANUP_PTR);
157 Py_buffer *ptr = (Py_buffer *)PyCapsule_GetPointer(self, GETARGS_CAPSULE_NAME_CLEANUP_BUFFER);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
getargs.c 148 void *ptr = PyCapsule_GetPointer(self, GETARGS_CAPSULE_NAME_CLEANUP_PTR);
157 Py_buffer *ptr = (Py_buffer *)PyCapsule_GetPointer(self, GETARGS_CAPSULE_NAME_CLEANUP_BUFFER);
    [all...]
  /external/python/cpython2/Python/
getargs.c 148 void *ptr = PyCapsule_GetPointer(self, GETARGS_CAPSULE_NAME_CLEANUP_PTR);
157 Py_buffer *ptr = (Py_buffer *)PyCapsule_GetPointer(self, GETARGS_CAPSULE_NAME_CLEANUP_BUFFER);
    [all...]

Completed in 927 milliseconds

1 2