Home
last modified time | relevance | path

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

/hal_espressif-3.6.0/components/freertos/
Dlist.c61 …pxList->xListEnd.pxNext = ( ListItem_t * ) &( pxList->xListEnd ); /*lint !e826 !e740 !e9087 Th… in vListInitialise()
99 pxNewListItem->pxNext = pxIndex; in vListInsertEnd()
105 pxIndex->pxPrevious->pxNext = pxNewListItem; in vListInsertEnd()
166 … * ) &( pxList->xListEnd ); pxIterator->pxNext->xItemValue <= xValueOfInsertion; pxIterator = pxIt… in vListInsert()
173 pxNewListItem->pxNext = pxIterator->pxNext; in vListInsert()
174 pxNewListItem->pxNext->pxPrevious = pxNewListItem; in vListInsert()
176 pxIterator->pxNext = pxNewListItem; in vListInsert()
192 pxItemToRemove->pxNext->pxPrevious = pxItemToRemove->pxPrevious; in uxListRemove()
193 pxItemToRemove->pxPrevious->pxNext = pxItemToRemove->pxNext; in uxListRemove()
Devent_groups.c587 ListItem_t * pxListItem, * pxNext; in xEventGroupSetBits() local
617 pxNext = listGET_NEXT( pxListItem ); in xEventGroupSetBits()
670 pxListItem = pxNext; in xEventGroupSetBits()
701 …configASSERT( pxTasksWaitingForBits->xListEnd.pxNext != ( const ListItem_t * ) &( pxTasksWaitingFo… in vEventGroupDelete()
702 …vTaskRemoveFromUnorderedEventList( pxTasksWaitingForBits->xListEnd.pxNext, eventUNBLOCKED_DUE_TO_B… in vEventGroupDelete()
/hal_espressif-3.6.0/components/freertos/include/freertos/
Dlist.h145 …struct xLIST_ITEM * configLIST_VOLATILE pxNext; /*< Pointer to the next ListItem_t in the … member
157 struct xLIST_ITEM * configLIST_VOLATILE pxNext; member
218 #define listGET_ITEM_VALUE_OF_HEAD_ENTRY( pxList ) ( ( ( pxList )->xListEnd ).pxNext->xItemV…
226 #define listGET_HEAD_ENTRY( pxList ) ( ( ( pxList )->xListEnd ).pxNext )
234 #define listGET_NEXT( pxListItem ) ( ( pxListItem )->pxNext )
283 ( pxConstList )->pxIndex = ( pxConstList )->pxIndex->pxNext; \
286 ( pxConstList )->pxIndex = ( pxConstList )->pxIndex->pxNext; \
308 #define listGET_OWNER_OF_HEAD_ENTRY( pxList ) ( ( &( ( pxList )->xListEnd ) )->pxNext->p…