Home
last modified time | relevance | path

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

/device/soc/esp/esp32/components/osal/
Dlist.c43 …pxList->pxIndex = ( ListItem_t * ) &( pxList->xListEnd ); /*lint !e826 !e740 !e9087 The mini lis… in vListInitialise()
77 ListItem_t * const pxIndex = pxList->pxIndex; in vListInsertEnd() local
88 pxNewListItem->pxNext = pxIndex; in vListInsertEnd()
89 pxNewListItem->pxPrevious = pxIndex->pxPrevious; in vListInsertEnd()
94 pxIndex->pxPrevious->pxNext = pxNewListItem; in vListInsertEnd()
95 pxIndex->pxPrevious = pxNewListItem; in vListInsertEnd()
184 if(pxList->pxIndex == pxItemToRemove) in uxListRemove()
186 pxList->pxIndex = pxItemToRemove->pxPrevious; in uxListRemove()
/device/soc/esp/esp32/components/osal/include/esp_osal/
Dlist.h168 …ListItem_t * configLIST_VOLATILE pxIndex; /*< Used to walk through the list. Points to the last… member
282 ( pxConstList )->pxIndex = ( pxConstList )->pxIndex->pxNext; \
283 if( ( void * ) ( pxConstList )->pxIndex == ( void * ) &( ( pxConstList )->xListEnd ) ) \
285 ( pxConstList )->pxIndex = ( pxConstList )->pxIndex->pxNext; \
287 ( pxTCB ) = ( pxConstList )->pxIndex->pvOwner; \