Home
last modified time | relevance | path

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

/Kernel-v10.6.2/
Dlist.c65 …pxList->xListEnd.pxNext = ( ListItem_t * ) &( pxList->xListEnd ); /*lint !e826 !e740 !e9087 Th… in vListInitialise()
112 pxNewListItem->pxNext = pxIndex; in vListInsertEnd()
118 pxIndex->pxPrevious->pxNext = pxNewListItem; in vListInsertEnd()
179 … * ) &( pxList->xListEnd ); pxIterator->pxNext->xItemValue <= xValueOfInsertion; pxIterator = pxIt… in vListInsert()
186 pxNewListItem->pxNext = pxIterator->pxNext; in vListInsert()
187 pxNewListItem->pxNext->pxPrevious = pxNewListItem; in vListInsert()
189 pxIterator->pxNext = pxNewListItem; in vListInsert()
205 pxItemToRemove->pxNext->pxPrevious = pxItemToRemove->pxPrevious; in uxListRemove()
206 pxItemToRemove->pxPrevious->pxNext = pxItemToRemove->pxNext; in uxListRemove()
Devent_groups.c522 ListItem_t * pxNext; in xEventGroupSetBits() local
548 pxNext = listGET_NEXT( pxListItem ); in xEventGroupSetBits()
601 pxListItem = pxNext; in xEventGroupSetBits()
631 …configASSERT( pxTasksWaitingForBits->xListEnd.pxNext != ( const ListItem_t * ) &( pxTasksWaitingFo… in vEventGroupDelete()
632 …vTaskRemoveFromUnorderedEventList( pxTasksWaitingForBits->xListEnd.pxNext, eventUNBLOCKED_DUE_TO_B… in vEventGroupDelete()
/Kernel-v10.6.2/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 )
290 ( pxConstList )->pxIndex = ( pxConstList )->pxIndex->pxNext; \
293 ( pxConstList )->pxIndex = ( pxConstList )->xListEnd.pxNext; \
320 ( pxItemToRemove )->pxNext->pxPrevious = ( pxItemToRemove )->pxPrevious; \
321 ( pxItemToRemove )->pxPrevious->pxNext = ( pxItemToRemove )->pxNext; \
367 ( pxNewListItem )->pxNext = pxIndex; \
[all …]