Lines Matching refs:pxIndex
176 …ListItem_t * configLIST_VOLATILE pxIndex; /**< Used to walk through the list. Points to the last … member
290 ( pxConstList )->pxIndex = ( pxConstList )->pxIndex->pxNext; \
291 if( ( void * ) ( pxConstList )->pxIndex == ( void * ) &( ( pxConstList )->xListEnd ) ) \
293 ( pxConstList )->pxIndex = ( pxConstList )->xListEnd.pxNext; \
295 ( pxTCB ) = ( pxConstList )->pxIndex->pvOwner; \
323 if( pxList->pxIndex == ( pxItemToRemove ) ) \
325 pxList->pxIndex = ( pxItemToRemove )->pxPrevious; \
356 ListItem_t * const pxIndex = ( pxList )->pxIndex; \
367 ( pxNewListItem )->pxNext = pxIndex; \
368 ( pxNewListItem )->pxPrevious = pxIndex->pxPrevious; \
370 pxIndex->pxPrevious->pxNext = ( pxNewListItem ); \
371 pxIndex->pxPrevious = ( pxNewListItem ); \