Searched refs:List_t (Results 1 – 14 of 14) sorted by relevance
/hal_espressif-3.6.0/components/freertos/ |
D | croutine.c | 44 …static List_t pxReadyCoRoutineLists[ configMAX_CO_ROUTINE_PRIORITIES ]; /*< Prioritised ready co-r… 45 …static List_t xDelayedCoRoutineList1; /*< Delayed co-routines. */ 46 …static List_t xDelayedCoRoutineList2; /*< Delayed co-routines (t… 47 …static List_t * pxDelayedCoRoutineList = NULL; /*< Points to the delayed … 48 …static List_t * pxOverflowDelayedCoRoutineList = NULL; /*< Points to the delayed … 49 …static List_t xPendingReadyCoRoutineList; /*< Holds co-routines that… 72 …vListInsertEnd( ( List_t * ) &( pxReadyCoRoutineLists[ pxCRCB->uxPriority ] ), &( pxCRCB->xGeneric… 162 List_t * pxEventList ) in vCoRoutineAddToDelayedList() 182 …vListInsert( ( List_t * ) pxOverflowDelayedCoRoutineList, ( ListItem_t * ) &( pxCurrentCoRoutine->… in vCoRoutineAddToDelayedList() 188 …vListInsert( ( List_t * ) pxDelayedCoRoutineList, ( ListItem_t * ) &( pxCurrentCoRoutine->xGeneric… in vCoRoutineAddToDelayedList() [all …]
|
D | list.c | 48 void vListInitialise( List_t * const pxList ) in vListInitialise() 85 void vListInsertEnd( List_t * const pxList, in vListInsertEnd() 115 void vListInsert( List_t * const pxList, in vListInsert() 190 List_t * const pxList = pxItemToRemove->pxContainer; in uxListRemove()
|
D | tasks.c | 219 List_t * pxTemp; \ 373 PRIVILEGED_DATA static List_t pxReadyTasksLists[ configMAX_PRIORITIES ]; /*< Prioritised ready task… 374 PRIVILEGED_DATA static List_t xDelayedTaskList1; /*< Delayed tasks. */ 375 PRIVILEGED_DATA static List_t xDelayedTaskList2; /*< Delayed tasks (two lis… 376 PRIVILEGED_DATA static List_t * volatile pxDelayedTaskList; /*< Points to the delayed … 377 PRIVILEGED_DATA static List_t * volatile pxOverflowDelayedTaskList; /*< Points to the delayed … 378 PRIVILEGED_DATA static List_t xPendingReadyList[ configNUM_CORES ]; /*< Tasks … 386 …PRIVILEGED_DATA static List_t xTasksWaitingTermination; /*< Tasks that have been deleted - but the… 393 PRIVILEGED_DATA static List_t xSuspendedTaskList; /*< Tasks that are currently suspended. */ 539 List_t * pxList, [all …]
|
D | timers.c | 146 PRIVILEGED_DATA static List_t xActiveTimerList1; 147 PRIVILEGED_DATA static List_t xActiveTimerList2; 148 PRIVILEGED_DATA static List_t * pxCurrentTimerList; 149 PRIVILEGED_DATA static List_t * pxOverflowTimerList; 932 List_t * pxTemp; in prvSwitchTimerLists()
|
D | event_groups.c | 77 List_t xTasksWaitingForBits; /*< List of tasks waiting for a bit to be set. */ 589 List_t const * pxList; in xEventGroupSetBits() 690 const List_t * pxTasksWaitingForBits = &( pxEventBits->xTasksWaitingForBits ); in vEventGroupDelete()
|
D | queue.c | 121 …List_t xTasksWaitingToSend; /*< List of tasks that are blocked waiting to post onto th… 122 …List_t xTasksWaitingToReceive; /*< List of tasks that are blocked waiting to read from th…
|
D | History.txt | 332 + The uxNumberOfItems member of List_t is now volatile - solving an issue
|
/hal_espressif-3.6.0/components/freertos/include/esp_additions/freertos/ |
D | task_snapshot.h | 35 List_t* pxListGetReadyTask ( UBaseType_t idx ); 36 List_t* pxListGetReadyPendingTask ( UBaseType_t idx ); 37 List_t* pxGetDelayedTaskList ( void ); 38 List_t* pxGetOverflowDelayedTaskList ( void ); 39 List_t* pxGetTasksWaitingTermination ( void ); 40 List_t* pxGetSuspendedTaskList ( void );
|
/hal_espressif-3.6.0/components/freertos/include/esp_additions/ |
D | freertos_tasks_c_additions.h | 54 List_t* pxListGetReadyTask ( UBaseType_t idx ) in pxListGetReadyTask() 59 List_t* pxListGetReadyPendingTask ( UBaseType_t idx ) in pxListGetReadyPendingTask() 64 List_t* pxGetDelayedTaskList ( void ) { in pxGetDelayedTaskList() 68 List_t* pxGetOverflowDelayedTaskList ( void ) { in pxGetOverflowDelayedTaskList() 72 List_t* pxGetTasksWaitingTermination ( void ) { in pxGetTasksWaitingTermination() 76 List_t* pxGetSuspendedTaskList ( void ) { in pxGetSuspendedTaskList()
|
/hal_espressif-3.6.0/components/freertos/esp_additions/ |
D | task_snapshot.c | 35 …apshot_t *pxTaskSnapshotArray, UBaseType_t *uxTask, const UBaseType_t uxArraySize, List_t *pxList ) in prvTaskGetSnapshotsFromList() 100 static void *prvFirstTaskGet( List_t *pxList ) in prvFirstTaskGet() 111 List_t *pxList = listLIST_ITEM_CONTAINER( pxTCBGetStateListItem(pxTCB) ); in prvNextTaskGet() 131 List_t *pxTaskList = NULL; in pxTaskGetNext() 134 List_t *task_lists[] = { in pxTaskGetNext() 161 List_t *pxList = pxListGetReadyTask(i); in pxTaskGetNext() 178 List_t *pxList = pxListGetReadyPendingTask(i); in pxTaskGetNext() 194 List_t *pxList = task_lists[ i ]; in pxTaskGetNext()
|
/hal_espressif-3.6.0/components/freertos/include/freertos/ |
D | list.h | 172 } List_t; typedef 280 List_t * const pxConstList = ( pxList ); \ 346 void vListInitialise( List_t * const pxList ) PRIVILEGED_FUNCTION; 370 void vListInsert( List_t * const pxList, 392 void vListInsertEnd( List_t * const pxList,
|
D | croutine.h | 770 List_t * pxEventList ); 779 BaseType_t xCoRoutineRemoveFromEventList( const List_t * pxEventList );
|
D | task.h | 3346 void vTaskPlaceOnEventList( List_t * const pxEventList, 3348 void vTaskPlaceOnUnorderedEventList( List_t * pxEventList, 3363 void vTaskPlaceOnEventListRestricted( List_t * const pxEventList, 3391 BaseType_t xTaskRemoveFromEventList( const List_t * const pxEventList ) PRIVILEGED_FUNCTION;
|
D | FreeRTOS.h | 1049 #define xList List_t
|