Home
last modified time | relevance | path

Searched refs:pxIndex (Results 1 – 2 of 2) sorted by relevance

/Kernel-v11.0.1/include/
Dlist.h176 …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; \
[all …]
/Kernel-v11.0.1/
Dlist.c56 pxList->pxIndex = ( ListItem_t * ) &( pxList->xListEnd ); in vListInitialise()
108 ListItem_t * const pxIndex = pxList->pxIndex; in vListInsertEnd() local
121 pxNewListItem->pxNext = pxIndex; in vListInsertEnd()
122 pxNewListItem->pxPrevious = pxIndex->pxPrevious; in vListInsertEnd()
127 pxIndex->pxPrevious->pxNext = pxNewListItem; in vListInsertEnd()
128 pxIndex->pxPrevious = pxNewListItem; in vListInsertEnd()
231 if( pxList->pxIndex == pxItemToRemove ) in uxListRemove()
233 pxList->pxIndex = pxItemToRemove->pxPrevious; in uxListRemove()