Searched refs:pxIndex (Results 1 – 2 of 2) sorted by relevance
176 …ListItem_t * configLIST_VOLATILE pxIndex; /**< Used to walk through the list. Points to the last … member290 ( 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; \[all …]
55 …pxList->pxIndex = ( ListItem_t * ) &( pxList->xListEnd ); /*lint !e826 !e740 !e9087 The mini list … in vListInitialise()101 ListItem_t * const pxIndex = pxList->pxIndex; in vListInsertEnd() local112 pxNewListItem->pxNext = pxIndex; in vListInsertEnd()113 pxNewListItem->pxPrevious = pxIndex->pxPrevious; in vListInsertEnd()118 pxIndex->pxPrevious->pxNext = pxNewListItem; in vListInsertEnd()119 pxIndex->pxPrevious = pxNewListItem; in vListInsertEnd()212 if( pxList->pxIndex == pxItemToRemove ) in uxListRemove()214 pxList->pxIndex = pxItemToRemove->pxPrevious; in uxListRemove()