Lines Matching refs:pxIndex
176 …ListItem_t * configLIST_VOLATILE pxIndex; /**< Used to walk through the list. Points to the last … member
291 ( pxConstList )->pxIndex = ( pxConstList )->pxIndex->pxNext; \
292 if( ( void * ) ( pxConstList )->pxIndex == ( void * ) &( ( pxConstList )->xListEnd ) ) \
294 ( pxConstList )->pxIndex = ( pxConstList )->xListEnd.pxNext; \
296 ( pxTCB ) = ( pxConstList )->pxIndex->pvOwner; \
331 … if( pxList->pxIndex == ( pxItemToRemove ) ) \
333 … pxList->pxIndex = ( pxItemToRemove )->pxPrevious; \
364 ListItem_t * const pxIndex = ( pxList )->pxIndex; \
375 … ( pxNewListItem )->pxNext = pxIndex; \
376 … ( pxNewListItem )->pxPrevious = pxIndex->pxPrevious; \
378 … pxIndex->pxPrevious->pxNext = ( pxNewListItem ); \
379 … pxIndex->pxPrevious = ( pxNewListItem ); \