Home
last modified time | relevance | path

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

/hal_espressif-3.6.0/components/freertos/
Dlist.c53 …pxList->pxIndex = ( ListItem_t * ) &( pxList->xListEnd ); /*lint !e826 !e740 !e9087 The mini list … in vListInitialise()
88 ListItem_t * const pxIndex = pxList->pxIndex; in vListInsertEnd() local
99 pxNewListItem->pxNext = pxIndex; in vListInsertEnd()
100 pxNewListItem->pxPrevious = pxIndex->pxPrevious; in vListInsertEnd()
105 pxIndex->pxPrevious->pxNext = pxNewListItem; in vListInsertEnd()
106 pxIndex->pxPrevious = pxNewListItem; in vListInsertEnd()
199 if( pxList->pxIndex == pxItemToRemove ) in uxListRemove()
201 pxList->pxIndex = pxItemToRemove->pxPrevious; in uxListRemove()
Dtasks.c3395 …pxReadyTasksLists[ uxCurPriority ].pxIndex = ( ListItem_t * ) &( pxReadyTasksLists[ uxCurPriority … in taskSelectHighestPriorityTaskSMP()
3435 …pxReadyTasksLists[ uxCurPriority ].pxIndex = ( ListItem_t * ) &( pxReadyTasksLists[ uxCurPriority … in taskSelectHighestPriorityTaskSMP()
/hal_espressif-3.6.0/components/freertos/include/freertos/
Dlist.h169 …ListItem_t * configLIST_VOLATILE pxIndex; /*< Used to walk through the list. Points to the la… member
283 ( pxConstList )->pxIndex = ( pxConstList )->pxIndex->pxNext; \
284 if( ( void * ) ( pxConstList )->pxIndex == ( void * ) &( ( pxConstList )->xListEnd ) ) \
286 ( pxConstList )->pxIndex = ( pxConstList )->pxIndex->pxNext; \
288 ( pxTCB ) = ( pxConstList )->pxIndex->pvOwner; \