Home
last modified time | relevance | path

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

/Kernel-v11.1.0/
Dlist.c67 pxList->xListEnd.pxPrevious = ( ListItem_t * ) &( pxList->xListEnd ); in vListInitialise()
122 pxNewListItem->pxPrevious = pxIndex->pxPrevious; in vListInsertEnd()
127 pxIndex->pxPrevious->pxNext = pxNewListItem; in vListInsertEnd()
128 pxIndex->pxPrevious = pxNewListItem; in vListInsertEnd()
163 pxIterator = pxList->xListEnd.pxPrevious; in vListInsert()
200 pxNewListItem->pxNext->pxPrevious = pxNewListItem; in vListInsert()
201 pxNewListItem->pxPrevious = pxIterator; in vListInsert()
223 pxItemToRemove->pxNext->pxPrevious = pxItemToRemove->pxPrevious; in uxListRemove()
224 pxItemToRemove->pxPrevious->pxNext = pxItemToRemove->pxNext; in uxListRemove()
232 pxList->pxIndex = pxItemToRemove->pxPrevious; in uxListRemove()
/Kernel-v11.1.0/include/
Dlist.h149 …struct xLIST_ITEM * configLIST_VOLATILE pxPrevious; /**< Pointer to the previous ListItem_t in the… member
162 struct xLIST_ITEM * configLIST_VOLATILE pxPrevious; member
328 … ( pxItemToRemove )->pxNext->pxPrevious = ( pxItemToRemove )->pxPrevious; \
329 … ( pxItemToRemove )->pxPrevious->pxNext = ( pxItemToRemove )->pxNext; \
333 … pxList->pxIndex = ( pxItemToRemove )->pxPrevious; \
376 … ( pxNewListItem )->pxPrevious = pxIndex->pxPrevious; \
378 … pxIndex->pxPrevious->pxNext = ( pxNewListItem ); \
379 … pxIndex->pxPrevious = ( pxNewListItem ); \