Home
last modified time | relevance | path

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

/Kernel-v11.1.0/
Dlist.c66 pxList->xListEnd.pxNext = ( ListItem_t * ) &( pxList->xListEnd ); in vListInitialise()
121 pxNewListItem->pxNext = pxIndex; in vListInsertEnd()
127 pxIndex->pxPrevious->pxNext = pxNewListItem; in vListInsertEnd()
192 … * ) &( pxList->xListEnd ); pxIterator->pxNext->xItemValue <= xValueOfInsertion; pxIterator = pxIt… in vListInsert()
199 pxNewListItem->pxNext = pxIterator->pxNext; in vListInsert()
200 pxNewListItem->pxNext->pxPrevious = pxNewListItem; in vListInsert()
202 pxIterator->pxNext = pxNewListItem; in vListInsert()
223 pxItemToRemove->pxNext->pxPrevious = pxItemToRemove->pxPrevious; in uxListRemove()
224 pxItemToRemove->pxPrevious->pxNext = pxItemToRemove->pxNext; in uxListRemove()
Devent_groups.c551 ListItem_t * pxNext; in xEventGroupSetBits() local
579 pxNext = listGET_NEXT( pxListItem ); in xEventGroupSetBits()
632 pxListItem = pxNext; in xEventGroupSetBits()
666 …configASSERT( pxTasksWaitingForBits->xListEnd.pxNext != ( const ListItem_t * ) &( pxTasksWaitingFo… in vEventGroupDelete()
667 …vTaskRemoveFromUnorderedEventList( pxTasksWaitingForBits->xListEnd.pxNext, eventUNBLOCKED_DUE_TO_B… in vEventGroupDelete()
/Kernel-v11.1.0/include/
Dlist.h148 …struct xLIST_ITEM * configLIST_VOLATILE pxNext; /**< Pointer to the next ListItem_t in the lis… member
161 struct xLIST_ITEM * configLIST_VOLATILE pxNext; member
225 #define listGET_ITEM_VALUE_OF_HEAD_ENTRY( pxList ) ( ( ( pxList )->xListEnd ).pxNext->xItemV…
233 #define listGET_HEAD_ENTRY( pxList ) ( ( ( pxList )->xListEnd ).pxNext )
241 #define listGET_NEXT( pxListItem ) ( ( pxListItem )->pxNext )
291 ( pxConstList )->pxIndex = ( pxConstList )->pxIndex->pxNext; \
294 ( pxConstList )->pxIndex = ( pxConstList )->xListEnd.pxNext; \
328 … ( pxItemToRemove )->pxNext->pxPrevious = ( pxItemToRemove )->pxPrevious; \
329 … ( pxItemToRemove )->pxPrevious->pxNext = ( pxItemToRemove )->pxNext; \
375 … ( pxNewListItem )->pxNext = pxIndex; \
[all …]