Searched refs:pxIndex (Results 1 – 2 of 2) sorted by relevance
43 …pxList->pxIndex = ( ListItem_t * ) &( pxList->xListEnd ); /*lint !e826 !e740 !e9087 The mini lis… in vListInitialise()77 ListItem_t * const pxIndex = pxList->pxIndex; in vListInsertEnd() local88 pxNewListItem->pxNext = pxIndex; in vListInsertEnd()89 pxNewListItem->pxPrevious = pxIndex->pxPrevious; in vListInsertEnd()94 pxIndex->pxPrevious->pxNext = pxNewListItem; in vListInsertEnd()95 pxIndex->pxPrevious = pxNewListItem; in vListInsertEnd()184 if(pxList->pxIndex == pxItemToRemove) in uxListRemove()186 pxList->pxIndex = pxItemToRemove->pxPrevious; in uxListRemove()
168 …ListItem_t * configLIST_VOLATILE pxIndex; /*< Used to walk through the list. Points to the last… member282 ( pxConstList )->pxIndex = ( pxConstList )->pxIndex->pxNext; \283 if( ( void * ) ( pxConstList )->pxIndex == ( void * ) &( ( pxConstList )->xListEnd ) ) \285 ( pxConstList )->pxIndex = ( pxConstList )->pxIndex->pxNext; \287 ( pxTCB ) = ( pxConstList )->pxIndex->pvOwner; \