/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/ |
weakrefobject.h | 19 * Note that this is a stealth reference: wr_object's refcount is
22 PyObject *wr_object;
member in struct:_PyWeakReference 24 /* A callable to invoke when wr_object dies, or NULL if none. */
27 /* A cache for wr_object's hash code. As usual for hashes, this is -1
32 /* If wr_object is weakly referenced, wr_object has a doubly-linked NULL-
34 * If wr_object goes away, wr_object is set to Py_None, and these pointers
74 (Py_REFCNT(((PyWeakReference *)(ref))->wr_object) > 0 \
75 ? ((PyWeakReference *)(ref))->wr_object \
[all...] |
/prebuilts/gdb/darwin-x86/include/python2.7/ |
weakrefobject.h | 19 * Note that this is a stealth reference: wr_object's refcount is 22 PyObject *wr_object; member in struct:_PyWeakReference 24 /* A callable to invoke when wr_object dies, or NULL if none. */ 27 /* A cache for wr_object's hash code. As usual for hashes, this is -1 32 /* If wr_object is weakly referenced, wr_object has a doubly-linked NULL- 34 * If wr_object goes away, wr_object is set to Py_None, and these pointers 77 (Py_REFCNT(((PyWeakReference *)(ref))->wr_object) > 0 \ 78 ? ((PyWeakReference *)(ref))->wr_object \ [all...] |
/prebuilts/gdb/linux-x86/include/python2.7/ |
weakrefobject.h | 19 * Note that this is a stealth reference: wr_object's refcount is 22 PyObject *wr_object; member in struct:_PyWeakReference 24 /* A callable to invoke when wr_object dies, or NULL if none. */ 27 /* A cache for wr_object's hash code. As usual for hashes, this is -1 32 /* If wr_object is weakly referenced, wr_object has a doubly-linked NULL- 34 * If wr_object goes away, wr_object is set to Py_None, and these pointers 77 (Py_REFCNT(((PyWeakReference *)(ref))->wr_object) > 0 \ 78 ? ((PyWeakReference *)(ref))->wr_object \ [all...] |
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/ |
weakrefobject.h | 19 * Note that this is a stealth reference: wr_object's refcount is 22 PyObject *wr_object; member in struct:_PyWeakReference 24 /* A callable to invoke when wr_object dies, or NULL if none. */ 27 /* A cache for wr_object's hash code. As usual for hashes, this is -1 32 /* If wr_object is weakly referenced, wr_object has a doubly-linked NULL- 34 * If wr_object goes away, wr_object is set to Py_None, and these pointers 77 (Py_REFCNT(((PyWeakReference *)(ref))->wr_object) > 0 \ 78 ? ((PyWeakReference *)(ref))->wr_object \ [all...] |
/prebuilts/python/linux-x86/2.7.5/include/python2.7/ |
weakrefobject.h | 19 * Note that this is a stealth reference: wr_object's refcount is 22 PyObject *wr_object; member in struct:_PyWeakReference 24 /* A callable to invoke when wr_object dies, or NULL if none. */ 27 /* A cache for wr_object's hash code. As usual for hashes, this is -1 32 /* If wr_object is weakly referenced, wr_object has a doubly-linked NULL- 34 * If wr_object goes away, wr_object is set to Py_None, and these pointers 77 (Py_REFCNT(((PyWeakReference *)(ref))->wr_object) > 0 \ 78 ? ((PyWeakReference *)(ref))->wr_object \ [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/ |
weakrefobject.h | 19 * Note that this is a stealth reference: wr_object's refcount is
22 PyObject *wr_object;
member in struct:_PyWeakReference 24 /* A callable to invoke when wr_object dies, or NULL if none. */
27 /* A cache for wr_object's hash code. As usual for hashes, this is -1
32 /* If wr_object is weakly referenced, wr_object has a doubly-linked NULL-
34 * If wr_object goes away, wr_object is set to Py_None, and these pointers
69 #define PyWeakref_GET_OBJECT(ref) (((PyWeakReference *)(ref))->wr_object)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
weakrefobject.c | 26 self->wr_object = ob;
55 if (self->wr_object != Py_None) {
56 PyWeakReference **list = GET_WEAKREFS_LISTPTR(self->wr_object);
63 self->wr_object = Py_None;
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/ |
gcmodule.c | 645 assert(wr->wr_object == op);
647 assert(wr->wr_object == Py_None);
[all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
gcmodule.c | 594 assert(wr->wr_object == op);
596 assert(wr->wr_object == Py_None);
[all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
weakrefobject.c | 26 self->wr_object = ob;
64 self->wr_object = Py_None;
|