Lines Matching refs:refchain
84 static PyObject refchain = {&refchain, &refchain}; variable
109 op->_ob_next = refchain._ob_next; in _Py_AddToAllObjects()
110 op->_ob_prev = &refchain; in _Py_AddToAllObjects()
111 refchain._ob_next->_ob_prev = op; in _Py_AddToAllObjects()
112 refchain._ob_next = op; in _Py_AddToAllObjects()
1845 if (op == &refchain || in _Py_ForgetReference()
1853 for (p = refchain._ob_next; p != &refchain; p = p->_ob_next) { in _Py_ForgetReference()
1858 if (p == &refchain) { in _Py_ForgetReference()
1878 for (op = refchain._ob_next; op != &refchain; op = op->_ob_next) { in _Py_PrintReferences()
1894 for (op = refchain._ob_next; op != &refchain; op = op->_ob_next) in _Py_PrintReferenceAddresses()
1908 op = refchain._ob_next; in _Py_GetObjects()
1912 for (i = 0; (n == 0 || i < n) && op != &refchain; i++) { in _Py_GetObjects()
1916 if (op == &refchain) in _Py_GetObjects()