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

1 2

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
weakrefobject.h 10 typedef struct _PyWeakReference PyWeakReference;
12 /* PyWeakReference is the base struct for the Python ReferenceType, ProxyType,
37 PyWeakReference *wr_prev;
38 PyWeakReference *wr_next;
62 PyAPI_FUNC(Py_ssize_t) _PyWeakref_GetWeakrefCount(PyWeakReference *head);
64 PyAPI_FUNC(void) _PyWeakref_ClearRef(PyWeakReference *self);
74 (Py_REFCNT(((PyWeakReference *)(ref))->wr_object) > 0 \
75 ? ((PyWeakReference *)(ref))->wr_object \
  /external/python/cpython2/Include/
weakrefobject.h 10 typedef struct _PyWeakReference PyWeakReference;
12 /* PyWeakReference is the base struct for the Python ReferenceType, ProxyType,
37 PyWeakReference *wr_prev;
38 PyWeakReference *wr_next;
62 PyAPI_FUNC(Py_ssize_t) _PyWeakref_GetWeakrefCount(PyWeakReference *head);
64 PyAPI_FUNC(void) _PyWeakref_ClearRef(PyWeakReference *self);
74 (Py_REFCNT(((PyWeakReference *)(ref))->wr_object) > 0 \
75 ? ((PyWeakReference *)(ref))->wr_object \
  /external/python/cpython3/Include/
weakrefobject.h 10 typedef struct _PyWeakReference PyWeakReference;
12 /* PyWeakReference is the base struct for the Python ReferenceType, ProxyType,
38 PyWeakReference *wr_prev;
39 PyWeakReference *wr_next;
65 PyAPI_FUNC(Py_ssize_t) _PyWeakref_GetWeakrefCount(PyWeakReference *head);
67 PyAPI_FUNC(void) _PyWeakref_ClearRef(PyWeakReference *self);
78 (Py_REFCNT(((PyWeakReference *)(ref))->wr_object) > 0 \
79 ? ((PyWeakReference *)(ref))->wr_object \
  /prebuilts/gdb/darwin-x86/include/python2.7/
weakrefobject.h 10 typedef struct _PyWeakReference PyWeakReference;
12 /* PyWeakReference is the base struct for the Python ReferenceType, ProxyType,
37 PyWeakReference *wr_prev;
38 PyWeakReference *wr_next;
65 PyAPI_FUNC(Py_ssize_t) _PyWeakref_GetWeakrefCount(PyWeakReference *head);
67 PyAPI_FUNC(void) _PyWeakref_ClearRef(PyWeakReference *self);
77 (Py_REFCNT(((PyWeakReference *)(ref))->wr_object) > 0 \
78 ? ((PyWeakReference *)(ref))->wr_object \
  /prebuilts/gdb/linux-x86/include/python2.7/
weakrefobject.h 10 typedef struct _PyWeakReference PyWeakReference;
12 /* PyWeakReference is the base struct for the Python ReferenceType, ProxyType,
37 PyWeakReference *wr_prev;
38 PyWeakReference *wr_next;
65 PyAPI_FUNC(Py_ssize_t) _PyWeakref_GetWeakrefCount(PyWeakReference *head);
67 PyAPI_FUNC(void) _PyWeakref_ClearRef(PyWeakReference *self);
77 (Py_REFCNT(((PyWeakReference *)(ref))->wr_object) > 0 \
78 ? ((PyWeakReference *)(ref))->wr_object \
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
weakrefobject.h 10 typedef struct _PyWeakReference PyWeakReference;
12 /* PyWeakReference is the base struct for the Python ReferenceType, ProxyType,
37 PyWeakReference *wr_prev;
38 PyWeakReference *wr_next;
65 PyAPI_FUNC(Py_ssize_t) _PyWeakref_GetWeakrefCount(PyWeakReference *head);
67 PyAPI_FUNC(void) _PyWeakref_ClearRef(PyWeakReference *self);
77 (Py_REFCNT(((PyWeakReference *)(ref))->wr_object) > 0 \
78 ? ((PyWeakReference *)(ref))->wr_object \
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
weakrefobject.h 10 typedef struct _PyWeakReference PyWeakReference;
12 /* PyWeakReference is the base struct for the Python ReferenceType, ProxyType,
37 PyWeakReference *wr_prev;
38 PyWeakReference *wr_next;
65 PyAPI_FUNC(Py_ssize_t) _PyWeakref_GetWeakrefCount(PyWeakReference *head);
67 PyAPI_FUNC(void) _PyWeakref_ClearRef(PyWeakReference *self);
77 (Py_REFCNT(((PyWeakReference *)(ref))->wr_object) > 0 \
78 ? ((PyWeakReference *)(ref))->wr_object \
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
weakrefobject.h 10 typedef struct _PyWeakReference PyWeakReference;
12 /* PyWeakReference is the base struct for the Python ReferenceType, ProxyType,
37 PyWeakReference *wr_prev;
38 PyWeakReference *wr_next;
65 PyAPI_FUNC(Py_ssize_t) _PyWeakref_GetWeakrefCount(PyWeakReference *head);
67 PyAPI_FUNC(void) _PyWeakref_ClearRef(PyWeakReference *self);
69 #define PyWeakref_GET_OBJECT(ref) (((PyWeakReference *)(ref))->wr_object)
  /external/python/cpython3/Objects/
weakrefobject.c 6 ((PyWeakReference **) PyObject_GET_WEAKREFS_LISTPTR(o))
10 _PyWeakref_GetWeakrefCount(PyWeakReference *head)
23 init_weakref(PyWeakReference *self, PyObject *ob, PyObject *callback)
33 static PyWeakReference *
36 PyWeakReference *result;
38 result = PyObject_GC_New(PyWeakReference, &_PyWeakref_RefType);
53 clear_weakref(PyWeakReference *self)
58 PyWeakReference **list = GET_WEAKREFS_LISTPTR(self->wr_object);
91 _PyWeakref_ClearRef(PyWeakReference *self)
108 clear_weakref((PyWeakReference *) self)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
weakrefobject.c 6 ((PyWeakReference **) PyObject_GET_WEAKREFS_LISTPTR(o))
10 _PyWeakref_GetWeakrefCount(PyWeakReference *head)
23 init_weakref(PyWeakReference *self, PyObject *ob, PyObject *callback)
31 static PyWeakReference *
34 PyWeakReference *result;
36 result = PyObject_GC_New(PyWeakReference, &_PyWeakref_RefType);
51 clear_weakref(PyWeakReference *self)
56 PyWeakReference **list = GET_WEAKREFS_LISTPTR(self->wr_object);
89 _PyWeakref_ClearRef(PyWeakReference *self)
106 clear_weakref((PyWeakReference *) self);
    [all...]
classobject.c 676 _PyWeakref_ClearRef((PyWeakReference *)
    [all...]
typeobject.c 993 PyWeakReference **list = (PyWeakReference **) \
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
weakrefobject.c 6 ((PyWeakReference **) PyObject_GET_WEAKREFS_LISTPTR(o))
10 _PyWeakref_GetWeakrefCount(PyWeakReference *head)
23 init_weakref(PyWeakReference *self, PyObject *ob, PyObject *callback)
31 static PyWeakReference *
34 PyWeakReference *result;
36 result = PyObject_GC_New(PyWeakReference, &_PyWeakref_RefType);
51 clear_weakref(PyWeakReference *self)
56 PyWeakReference **list = GET_WEAKREFS_LISTPTR(
90 _PyWeakref_ClearRef(PyWeakReference *self)
107 clear_weakref((PyWeakReference *) self);
    [all...]
classobject.c 666 _PyWeakref_ClearRef((PyWeakReference *)
    [all...]
typeobject.c 977 PyWeakReference **list = (PyWeakReference **) \
    [all...]
  /external/python/cpython2/Objects/
weakrefobject.c 6 ((PyWeakReference **) PyObject_GET_WEAKREFS_LISTPTR(o))
10 _PyWeakref_GetWeakrefCount(PyWeakReference *head)
23 init_weakref(PyWeakReference *self, PyObject *ob, PyObject *callback)
31 static PyWeakReference *
34 PyWeakReference *result;
36 result = PyObject_GC_New(PyWeakReference, &_PyWeakref_RefType);
51 clear_weakref(PyWeakReference *self)
56 PyWeakReference **list = GET_WEAKREFS_LISTPTR(self->wr_object);
89 _PyWeakref_ClearRef(PyWeakReference *self)
106 clear_weakref((PyWeakReference *) self)
    [all...]
classobject.c 676 _PyWeakref_ClearRef((PyWeakReference *)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
_weakref.c 5 ((PyWeakReference **) PyObject_GET_WEAKREFS_LISTPTR(o))
18 PyWeakReference **list = GET_WEAKREFS_LISTPTR(object);
39 PyWeakReference **list = GET_WEAKREFS_LISTPTR(object);
44 PyWeakReference *current = *list;
gcmodule.c 605 PyWeakReference *wr; /* generally a cast of op */
621 PyWeakReference **wrlist;
631 wrlist = (PyWeakReference **)
708 wr = (PyWeakReference *)op;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
_weakref.c 5 ((PyWeakReference **) PyObject_GET_WEAKREFS_LISTPTR(o))
18 PyWeakReference **list = GET_WEAKREFS_LISTPTR(object);
39 PyWeakReference **list = GET_WEAKREFS_LISTPTR(object);
44 PyWeakReference *current = *list;
gcmodule.c 554 PyWeakReference *wr; /* generally a cast of op */
570 PyWeakReference **wrlist;
580 wrlist = (PyWeakReference **)
657 wr = (PyWeakReference *)op;
    [all...]
  /external/python/cpython2/Modules/
_weakref.c 5 ((PyWeakReference **) PyObject_GET_WEAKREFS_LISTPTR(o))
18 PyWeakReference **list = GET_WEAKREFS_LISTPTR(object);
39 PyWeakReference **list = GET_WEAKREFS_LISTPTR(object);
44 PyWeakReference *current = *list;
gcmodule.c 605 PyWeakReference *wr; /* generally a cast of op */
621 PyWeakReference **wrlist;
631 wrlist = (PyWeakReference **)
708 wr = (PyWeakReference *)op;
    [all...]
  /external/python/cpython3/Modules/
_weakref.c 5 ((PyWeakReference **) PyObject_GET_WEAKREFS_LISTPTR(o))
28 PyWeakReference **list;
88 PyWeakReference **list = GET_WEAKREFS_LISTPTR(object);
93 PyWeakReference *current = *list;
gcmodule.c 604 PyWeakReference *wr; /* generally a cast of op */
620 PyWeakReference **wrlist;
630 wrlist = (PyWeakReference **)
707 wr = (PyWeakReference *)op;
    [all...]

Completed in 304 milliseconds

1 2