Lines Matching refs:pList
178 #define QLIST_FOR_ALL(pList, pNode) \ argument
179 for ((pNode) = (pList)->n.pNext; \
180 (pNode) != &(pList)->n; \
183 #define QLIST_FOR_REST(pList, pNode) \ argument
185 (pNode) != &(pList)->n; \
188 #define QLIST_REV_FOR_ALL(pList, pNode) \ argument
189 for ((pNode) = (pList)->n.pPrev; \
190 (pNode) != &(pList)->n; \
193 #define QLIST_REV_FOR_REST(pList, pNode) \ argument
195 (pNode) != &(pList)->n; \
199 #define QLIST_NEXTSAFE_FOR_ALL(pList, pNode, pNodeNext) \ argument
200 for ((pNode) = (pList)->n.pNext, (pNodeNext) = (pNode)->pNext; \
201 (pNode) != &(pList)->n; \