Home
last modified time | relevance | path

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

/Kernel-v10.6.2/include/
HDlist.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-v10.6.2/
HDlist.c55 …pxList->pxIndex = ( ListItem_t * ) &( pxList->xListEnd ); /*lint !e826 !e740 !e9087 The mini list … in vListInitialise()
101 ListItem_t * const pxIndex = pxList->pxIndex; in vListInsertEnd() local
112 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()