Home
last modified time | relevance | path

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

/hal_espressif-3.6.0/components/freertos/
Dlist.c62 …pxList->xListEnd.pxPrevious = ( ListItem_t * ) &( pxList->xListEnd ); /*lint !e826 !e740 !e9087 Th… in vListInitialise()
100 pxNewListItem->pxPrevious = pxIndex->pxPrevious; in vListInsertEnd()
105 pxIndex->pxPrevious->pxNext = pxNewListItem; in vListInsertEnd()
106 pxIndex->pxPrevious = pxNewListItem; in vListInsertEnd()
137 pxIterator = pxList->xListEnd.pxPrevious; in vListInsert()
174 pxNewListItem->pxNext->pxPrevious = pxNewListItem; in vListInsert()
175 pxNewListItem->pxPrevious = pxIterator; in vListInsert()
192 pxItemToRemove->pxNext->pxPrevious = pxItemToRemove->pxPrevious; in uxListRemove()
193 pxItemToRemove->pxPrevious->pxNext = pxItemToRemove->pxNext; in uxListRemove()
201 pxList->pxIndex = pxItemToRemove->pxPrevious; in uxListRemove()
/hal_espressif-3.6.0/components/freertos/include/freertos/
Dlist.h146 …struct xLIST_ITEM * configLIST_VOLATILE pxPrevious; /*< Pointer to the previous ListItem_t in … member
158 struct xLIST_ITEM * configLIST_VOLATILE pxPrevious; member