Lines Matching refs:pxList
116 #define listSET_LIST_INTEGRITY_CHECK_1_VALUE( pxList ) argument
117 #define listSET_LIST_INTEGRITY_CHECK_2_VALUE( pxList ) argument
119 #define listTEST_LIST_INTEGRITY( pxList ) argument
130 …#define listSET_LIST_INTEGRITY_CHECK_1_VALUE( pxList ) ( pxList )->xListIntegrityValu…
131 …#define listSET_LIST_INTEGRITY_CHECK_2_VALUE( pxList ) ( pxList )->xListIntegrityValu…
136 …T_INTEGRITY( pxList ) configASSERT( ( ( pxList )->xListIntegrityValue1 =…
225 #define listGET_ITEM_VALUE_OF_HEAD_ENTRY( pxList ) ( ( ( pxList )->xListEnd ).pxNext->xItemV… argument
233 #define listGET_HEAD_ENTRY( pxList ) ( ( ( pxList )->xListEnd ).pxNext ) argument
249 #define listGET_END_MARKER( pxList ) ( ( ListItem_t const * ) ( &( ( pxList )-… argument
258 #define listLIST_IS_EMPTY( pxList ) ( ( ( pxList )->uxNumberOfItems == ( UBas… argument
263 #define listCURRENT_LIST_LENGTH( pxList ) ( ( pxList )->uxNumberOfItems ) argument
285 #define listGET_OWNER_OF_NEXT_ENTRY( pxTCB, pxList ) \ argument
287 List_t * const pxConstList = ( pxList ); \
318 List_t * const pxList = ( pxItemToRemove )->pxContainer; \
323 if( pxList->pxIndex == ( pxItemToRemove ) ) \
325 pxList->pxIndex = ( pxItemToRemove )->pxPrevious; \
329 ( pxList->uxNumberOfItems )--; \
354 #define listINSERT_END( pxList, pxNewListItem ) \ argument
356 ListItem_t * const pxIndex = ( pxList )->pxIndex; \
361 listTEST_LIST_INTEGRITY( ( pxList ) ); \
374 ( pxNewListItem )->pxContainer = ( pxList ); \
376 ( ( pxList )->uxNumberOfItems )++; \
395 #define listGET_OWNER_OF_HEAD_ENTRY( pxList ) ( ( &( ( pxList )->xListEnd ) )->pxNext->p… argument
406 #define listIS_CONTAINED_WITHIN( pxList, pxListItem ) ( ( ( pxListItem )->pxContainer == ( pxLis… argument
421 #define listLIST_IS_INITIALISED( pxList ) ( ( pxList )->xListEnd.xItemValue == portM… argument
433 void vListInitialise( List_t * const pxList ) PRIVILEGED_FUNCTION;
457 void vListInsert( List_t * const pxList,
479 void vListInsertEnd( List_t * const pxList,