Home
last modified time | relevance | path

Searched refs:xItemValue (Results 1 – 5 of 5) sorted by relevance

/Kernel-v11.1.0/include/
Dlist.h147 …configLIST_VOLATILE TickType_t xItemValue; /**< The value being listed. In most cases th… member
160 configLIST_VOLATILE TickType_t xItemValue; member
206 #define listSET_LIST_ITEM_VALUE( pxListItem, xValue ) ( ( pxListItem )->xItemValue = ( xValue )…
216 #define listGET_LIST_ITEM_VALUE( pxListItem ) ( ( pxListItem )->xItemValue )
225 …e listGET_ITEM_VALUE_OF_HEAD_ENTRY( pxList ) ( ( ( pxList )->xListEnd ).pxNext->xItemValue )
429 #define listLIST_IS_INITIALISED( pxList ) ( ( pxList )->xListEnd.xItemValue == portM…
Dtask.h3518 const TickType_t xItemValue,
3562 const TickType_t xItemValue ) PRIVILEGED_FUNCTION;
DFreeRTOS.h2053 #define traceENTER_vTaskPlaceOnUnorderedEventList( pxEventList, xItemValue, xTicksToWait ) argument
2077 #define traceENTER_vTaskRemoveFromUnorderedEventList( pxEventListItem, xItemValue ) argument
/Kernel-v11.1.0/
Dlist.c62 pxList->xListEnd.xItemValue = portMAX_DELAY; in vListInitialise()
143 const TickType_t xValueOfInsertion = pxNewListItem->xItemValue; in vListInsert()
192 …for( pxIterator = ( ListItem_t * ) &( pxList->xListEnd ); pxIterator->pxNext->xItemValue <= xValue… in vListInsert()
Dtasks.c4673 TickType_t xItemValue; in xTaskIncrementTick() local
4738 xItemValue = listGET_LIST_ITEM_VALUE( &( pxTCB->xStateListItem ) ); in xTaskIncrementTick()
4740 if( xConstTickCount < xItemValue ) in xTaskIncrementTick()
4747 xNextTaskUnblockTime = xItemValue; in xTaskIncrementTick()
5273 const TickType_t xItemValue, in vTaskPlaceOnUnorderedEventList() argument
5276 traceENTER_vTaskPlaceOnUnorderedEventList( pxEventList, xItemValue, xTicksToWait ); in vTaskPlaceOnUnorderedEventList()
5287 …listSET_LIST_ITEM_VALUE( &( pxCurrentTCB->xEventListItem ), xItemValue | taskEVENT_LIST_ITEM_VALUE… in vTaskPlaceOnUnorderedEventList()
5435 const TickType_t xItemValue ) in vTaskRemoveFromUnorderedEventList() argument
5439 traceENTER_vTaskRemoveFromUnorderedEventList( pxEventListItem, xItemValue ); in vTaskRemoveFromUnorderedEventList()
5446 listSET_LIST_ITEM_VALUE( pxEventListItem, xItemValue | taskEVENT_LIST_ITEM_VALUE_IN_USE ); in vTaskRemoveFromUnorderedEventList()