Home
last modified time | relevance | path

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

/device/soc/esp/esp32/components/osal/
Dlist.c52 …pxList->xListEnd.pxPrevious = ( ListItem_t * ) &( pxList->xListEnd );/*lint !e826 !e740 !e9087 The… in vListInitialise()
89 pxNewListItem->pxPrevious = pxIndex->pxPrevious; in vListInsertEnd()
94 pxIndex->pxPrevious->pxNext = pxNewListItem; in vListInsertEnd()
95 pxIndex->pxPrevious = pxNewListItem; in vListInsertEnd()
125 pxIterator = pxList->xListEnd.pxPrevious; in vListInsert()
159 pxNewListItem->pxNext->pxPrevious = pxNewListItem; in vListInsert()
160 pxNewListItem->pxPrevious = pxIterator; in vListInsert()
177 pxItemToRemove->pxNext->pxPrevious = pxItemToRemove->pxPrevious; in uxListRemove()
178 pxItemToRemove->pxPrevious->pxNext = pxItemToRemove->pxNext; in uxListRemove()
186 pxList->pxIndex = pxItemToRemove->pxPrevious; in uxListRemove()
/device/soc/esp/esp32/components/osal/include/esp_osal/
Dlist.h145 …struct xLIST_ITEM * configLIST_VOLATILE pxPrevious; /*< Pointer to the previous ListItem_t in the … member
157 struct xLIST_ITEM * configLIST_VOLATILE pxPrevious; member