Searched refs:refchain (Results 1 – 1 of 1) sorted by relevance
44 static PyObject refchain = {&refchain, &refchain}; variable69 op->_ob_next = refchain._ob_next; in _Py_AddToAllObjects()70 op->_ob_prev = &refchain; in _Py_AddToAllObjects()71 refchain._ob_next->_ob_prev = op; in _Py_AddToAllObjects()72 refchain._ob_next = op; in _Py_AddToAllObjects()2240 if (op == &refchain || in _Py_ForgetReference()2244 for (p = refchain._ob_next; p != &refchain; p = p->_ob_next) { in _Py_ForgetReference()2248 if (p == &refchain) /* Not found */ in _Py_ForgetReference()2273 for (op = refchain._ob_next; op != &refchain; op = op->_ob_next) { in _Py_PrintReferences()2289 for (op = refchain._ob_next; op != &refchain; op = op->_ob_next) in _Py_PrintReferenceAddresses()[all …]