Home
last modified time | relevance | path

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

/hal_espressif-3.6.0/components/freertos/
Dcroutine.c135 vListInitialiseItem( &( pxCoRoutine->xEventListItem ) ); in xCoRoutineCreate()
141 listSET_LIST_ITEM_OWNER( &( pxCoRoutine->xEventListItem ), pxCoRoutine ); in xCoRoutineCreate()
144 …listSET_LIST_ITEM_VALUE( &( pxCoRoutine->xEventListItem ), ( ( TickType_t ) configMAX_CO_ROUTINE_P… in xCoRoutineCreate()
195 vListInsert( pxEventList, &( pxCurrentCoRoutine->xEventListItem ) ); in vCoRoutineAddToDelayedList()
213 ( void ) uxListRemove( &( pxUnblockedCRCB->xEventListItem ) ); in prvCheckPendingReadyList()
267 if( pxCRCB->xEventListItem.pxContainer ) in prvCheckDelayedList()
269 ( void ) uxListRemove( &( pxCRCB->xEventListItem ) ); in prvCheckDelayedList()
346 ( void ) uxListRemove( &( pxUnblockedCRCB->xEventListItem ) ); in xCoRoutineRemoveFromEventList()
347 …istInsertEnd( ( List_t * ) &( xPendingReadyCoRoutineList ), &( pxUnblockedCRCB->xEventListItem ) ); in xCoRoutineRemoveFromEventList()
Dtasks.c287 ListItem_t xEventListItem; /*< Used to reference a task from an event list. */ member
1046 vListInitialiseItem( &( pxNewTCB->xEventListItem ) ); in prvInitialiseNewTask()
1053 …listSET_LIST_ITEM_VALUE( &( pxNewTCB->xEventListItem ), ( TickType_t ) configMAX_PRIORITIES - ( Ti… in prvInitialiseNewTask()
1054 listSET_LIST_ITEM_OWNER( &( pxNewTCB->xEventListItem ), pxNewTCB ); in prvInitialiseNewTask()
1350 if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL ) in vTaskDelete()
1352 ( void ) uxListRemove( &( pxTCB->xEventListItem ) ); in vTaskDelete()
1643 if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) == NULL ) in eTaskGetState()
1896 …if( ( listGET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ) ) & taskEVENT_LIST_ITEM_VALUE_IN_USE ) =… in vTaskPrioritySet()
1898 …listSET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ), ( ( TickType_t ) configMAX_PRIORITIES - ( Tic… in vTaskPrioritySet()
1980 if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL ) in vTaskSuspend()
[all …]
/hal_espressif-3.6.0/components/freertos/include/freertos/
Dcroutine.h55 ListItem_t xEventListItem; /*< List item used to place the CRCB in event lists. */ member