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
286 #define listGET_OWNER_OF_NEXT_ENTRY( pxTCB, pxList ) \ argument
288 List_t * const pxConstList = ( pxList ); \
326 … List_t * const pxList = ( pxItemToRemove )->pxContainer; \
331 … if( pxList->pxIndex == ( pxItemToRemove ) ) \
333 … pxList->pxIndex = ( pxItemToRemove )->pxPrevious; \
337 … ( ( pxList )->uxNumberOfItems ) = ( UBaseType_t ) ( ( ( pxList )->uxNumberOfItems ) - 1U ); \
362 #define listINSERT_END( pxList, pxNewListItem ) \ argument
364 ListItem_t * const pxIndex = ( pxList )->pxIndex; \
369 listTEST_LIST_INTEGRITY( ( pxList ) ); \
382 … ( pxNewListItem )->pxContainer = ( pxList ); \
384 … ( ( pxList )->uxNumberOfItems ) = ( UBaseType_t ) ( ( ( pxList )->uxNumberOfItems ) + 1U ); \
403 #define listGET_OWNER_OF_HEAD_ENTRY( pxList ) ( ( &( ( pxList )->xListEnd ) )->pxNext->p… argument
414 #define listIS_CONTAINED_WITHIN( pxList, pxListItem ) ( ( ( pxListItem )->pxContainer == ( pxLis… argument
429 #define listLIST_IS_INITIALISED( pxList ) ( ( pxList )->xListEnd.xItemValue == portM… argument
441 void vListInitialise( List_t * const pxList ) PRIVILEGED_FUNCTION;
465 void vListInsert( List_t * const pxList,
487 void vListInsertEnd( List_t * const pxList,