Searched defs:PyWeakReference (Results 1 - 2 of 2) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
H A Dweakrefobject.h10 typedef struct _PyWeakReference PyWeakReference; typedef in typeref:struct:_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 \
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
H A Dweakrefobject.h10 typedef struct _PyWeakReference PyWeakReference; typedef in typeref:struct:_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)

Completed in 671 milliseconds