HomeSort by relevance Sort by last modified time
    Searched refs:capsule (Results 1 - 16 of 16) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
capsule.c 17 _is_legal_capsule(PyCapsule *capsule, const char *invalid_capsule)
19 if (!capsule || !PyCapsule_CheckExact(capsule) || capsule->pointer == NULL) {
26 #define is_legal_capsule(capsule, name) \
27 (_is_legal_capsule(capsule, \
46 PyCapsule *capsule; local
53 capsule = PyObject_NEW(PyCapsule, &PyCapsule_Type);
54 if (capsule == NULL) {
58 capsule->pointer = pointer;
70 PyCapsule *capsule = (PyCapsule *)o; local
82 PyCapsule *capsule = (PyCapsule *)o; local
100 PyCapsule *capsule = (PyCapsule *)o; local
112 PyCapsule *capsule = (PyCapsule *)o; local
124 PyCapsule *capsule = (PyCapsule *)o; local
136 PyCapsule *capsule = (PyCapsule *)o; local
155 PyCapsule *capsule = (PyCapsule *)o; local
169 PyCapsule *capsule = (PyCapsule *)o; local
183 PyCapsule *capsule = (PyCapsule *)o; local
239 PyCapsule *capsule = (PyCapsule *)object; local
259 PyCapsule *capsule = (PyCapsule *)o; local
270 PyCapsule *capsule = (PyCapsule *)o; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
capsule.c 17 _is_legal_capsule(PyCapsule *capsule, const char *invalid_capsule)
19 if (!capsule || !PyCapsule_CheckExact(capsule) || capsule->pointer == NULL) {
26 #define is_legal_capsule(capsule, name) \
27 (_is_legal_capsule(capsule, \
46 PyCapsule *capsule; local
53 capsule = PyObject_NEW(PyCapsule, &PyCapsule_Type);
54 if (capsule == NULL) {
58 capsule->pointer = pointer;
70 PyCapsule *capsule = (PyCapsule *)o; local
82 PyCapsule *capsule = (PyCapsule *)o; local
100 PyCapsule *capsule = (PyCapsule *)o; local
112 PyCapsule *capsule = (PyCapsule *)o; local
124 PyCapsule *capsule = (PyCapsule *)o; local
136 PyCapsule *capsule = (PyCapsule *)o; local
155 PyCapsule *capsule = (PyCapsule *)o; local
169 PyCapsule *capsule = (PyCapsule *)o; local
183 PyCapsule *capsule = (PyCapsule *)o; local
239 PyCapsule *capsule = (PyCapsule *)object; local
259 PyCapsule *capsule = (PyCapsule *)o; local
270 PyCapsule *capsule = (PyCapsule *)o; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
pycapsule.h 2 /* Capsule objects let you wrap a C "void *" pointer in a Python
11 For more information, please see "c-api/capsule.html" in the
33 PyAPI_FUNC(void *) PyCapsule_GetPointer(PyObject *capsule, const char *name);
35 PyAPI_FUNC(PyCapsule_Destructor) PyCapsule_GetDestructor(PyObject *capsule); variable
37 PyAPI_FUNC(const char *) PyCapsule_GetName(PyObject *capsule); variable
39 PyAPI_FUNC(void *) PyCapsule_GetContext(PyObject *capsule); variable
41 PyAPI_FUNC(int) PyCapsule_IsValid(PyObject *capsule, const char *name);
43 PyAPI_FUNC(int) PyCapsule_SetPointer(PyObject *capsule, void *pointer);
45 PyAPI_FUNC(int) PyCapsule_SetDestructor(PyObject *capsule, PyCapsule_Destructor destructor);
47 PyAPI_FUNC(int) PyCapsule_SetName(PyObject *capsule, const char *name);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
pycapsule.h 2 /* Capsule objects let you wrap a C "void *" pointer in a Python
11 For more information, please see "c-api/capsule.html" in the
33 PyAPI_FUNC(void *) PyCapsule_GetPointer(PyObject *capsule, const char *name);
35 PyAPI_FUNC(PyCapsule_Destructor) PyCapsule_GetDestructor(PyObject *capsule); variable
37 PyAPI_FUNC(const char *) PyCapsule_GetName(PyObject *capsule); variable
39 PyAPI_FUNC(void *) PyCapsule_GetContext(PyObject *capsule); variable
41 PyAPI_FUNC(int) PyCapsule_IsValid(PyObject *capsule, const char *name);
43 PyAPI_FUNC(int) PyCapsule_SetPointer(PyObject *capsule, void *pointer);
45 PyAPI_FUNC(int) PyCapsule_SetDestructor(PyObject *capsule, PyCapsule_Destructor destructor);
47 PyAPI_FUNC(int) PyCapsule_SetName(PyObject *capsule, const char *name);
    [all...]
  /prebuilts/gdb/darwin-x86/include/python2.7/
pycapsule.h 2 /* Capsule objects let you wrap a C "void *" pointer in a Python
11 For more information, please see "c-api/capsule.html" in the
33 PyAPI_FUNC(void *) PyCapsule_GetPointer(PyObject *capsule, const char *name);
35 PyAPI_FUNC(PyCapsule_Destructor) PyCapsule_GetDestructor(PyObject *capsule); variable
37 PyAPI_FUNC(const char *) PyCapsule_GetName(PyObject *capsule); variable
39 PyAPI_FUNC(void *) PyCapsule_GetContext(PyObject *capsule); variable
41 PyAPI_FUNC(int) PyCapsule_IsValid(PyObject *capsule, const char *name);
43 PyAPI_FUNC(int) PyCapsule_SetPointer(PyObject *capsule, void *pointer);
45 PyAPI_FUNC(int) PyCapsule_SetDestructor(PyObject *capsule, PyCapsule_Destructor destructor);
47 PyAPI_FUNC(int) PyCapsule_SetName(PyObject *capsule, const char *name)
    [all...]
  /prebuilts/gdb/linux-x86/include/python2.7/
pycapsule.h 2 /* Capsule objects let you wrap a C "void *" pointer in a Python
11 For more information, please see "c-api/capsule.html" in the
33 PyAPI_FUNC(void *) PyCapsule_GetPointer(PyObject *capsule, const char *name);
35 PyAPI_FUNC(PyCapsule_Destructor) PyCapsule_GetDestructor(PyObject *capsule); variable
37 PyAPI_FUNC(const char *) PyCapsule_GetName(PyObject *capsule); variable
39 PyAPI_FUNC(void *) PyCapsule_GetContext(PyObject *capsule); variable
41 PyAPI_FUNC(int) PyCapsule_IsValid(PyObject *capsule, const char *name);
43 PyAPI_FUNC(int) PyCapsule_SetPointer(PyObject *capsule, void *pointer);
45 PyAPI_FUNC(int) PyCapsule_SetDestructor(PyObject *capsule, PyCapsule_Destructor destructor);
47 PyAPI_FUNC(int) PyCapsule_SetName(PyObject *capsule, const char *name)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
pycapsule.h 2 /* Capsule objects let you wrap a C "void *" pointer in a Python
11 For more information, please see "c-api/capsule.html" in the
33 PyAPI_FUNC(void *) PyCapsule_GetPointer(PyObject *capsule, const char *name);
35 PyAPI_FUNC(PyCapsule_Destructor) PyCapsule_GetDestructor(PyObject *capsule); variable
37 PyAPI_FUNC(const char *) PyCapsule_GetName(PyObject *capsule); variable
39 PyAPI_FUNC(void *) PyCapsule_GetContext(PyObject *capsule); variable
41 PyAPI_FUNC(int) PyCapsule_IsValid(PyObject *capsule, const char *name);
43 PyAPI_FUNC(int) PyCapsule_SetPointer(PyObject *capsule, void *pointer);
45 PyAPI_FUNC(int) PyCapsule_SetDestructor(PyObject *capsule, PyCapsule_Destructor destructor);
47 PyAPI_FUNC(int) PyCapsule_SetName(PyObject *capsule, const char *name)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
pycapsule.h 2 /* Capsule objects let you wrap a C "void *" pointer in a Python
11 For more information, please see "c-api/capsule.html" in the
33 PyAPI_FUNC(void *) PyCapsule_GetPointer(PyObject *capsule, const char *name);
35 PyAPI_FUNC(PyCapsule_Destructor) PyCapsule_GetDestructor(PyObject *capsule); variable
37 PyAPI_FUNC(const char *) PyCapsule_GetName(PyObject *capsule); variable
39 PyAPI_FUNC(void *) PyCapsule_GetContext(PyObject *capsule); variable
41 PyAPI_FUNC(int) PyCapsule_IsValid(PyObject *capsule, const char *name);
43 PyAPI_FUNC(int) PyCapsule_SetPointer(PyObject *capsule, void *pointer);
45 PyAPI_FUNC(int) PyCapsule_SetDestructor(PyObject *capsule, PyCapsule_Destructor destructor);
47 PyAPI_FUNC(int) PyCapsule_SetName(PyObject *capsule, const char *name)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
compile.c 518 PyObject *capsule = PyCapsule_New(c->u, COMPILER_CAPSULE_NAME_COMPILER_UNIT, NULL); local
519 if (!capsule || PyList_Append(c->c_stack, capsule) < 0) {
520 Py_XDECREF(capsule);
524 Py_DECREF(capsule);
541 PyObject *capsule; local
548 capsule = PyList_GET_ITEM(c->c_stack, n);
549 c->u = (struct compiler_unit *)PyCapsule_GetPointer(capsule, COMPILER_CAPSULE_NAME_COMPILER_UNIT);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/
Python2710.inf 124 Objects/capsule.c
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
compile.c 495 PyObject *capsule = PyCapsule_New(c->u, COMPILER_CAPSULE_NAME_COMPILER_UNIT, NULL); local
496 if (!capsule || PyList_Append(c->c_stack, capsule) < 0) {
497 Py_XDECREF(capsule);
501 Py_DECREF(capsule);
518 PyObject *capsule; local
525 capsule = PyList_GET_ITEM(c->c_stack, n);
526 c->u = (struct compiler_unit *)PyCapsule_GetPointer(capsule, COMPILER_CAPSULE_NAME_COMPILER_UNIT);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/
PythonCore.inf 128 Python-$(PYTHON_VERSION)/Objects/capsule.c
  /prebuilts/gdb/darwin-x86/lib/python2.7/config/
Makefile 371 Objects/capsule.o \
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/config/
Makefile 372 Objects/capsule.o \
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/config/
Makefile 371 Objects/capsule.o \
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/config/
Makefile 372 Objects/capsule.o \
    [all...]

Completed in 260 milliseconds