Searched refs:List_t (Results 1 – 11 of 11) sorted by relevance
| /Kernel-v11.0.1/ |
| D | croutine.c | 46 …static List_t pxReadyCoRoutineLists[ configMAX_CO_ROUTINE_PRIORITIES ]; /**< Prioritised ready co-… 47 …static List_t xDelayedCoRoutineList1; /**< Delayed co-routines. … 48 …static List_t xDelayedCoRoutineList2; /**< Delayed co-routines (… 49 …static List_t * pxDelayedCoRoutineList = NULL; /**< Points to the delayed… 50 …static List_t * pxOverflowDelayedCoRoutineList = NULL; /**< Points to the delayed… 51 …static List_t xPendingReadyCoRoutineList; /**< Holds co-routines tha… 74 …vListInsertEnd( ( List_t * ) &( pxReadyCoRoutineLists[ ( pxCRCB )->uxPriority ] ), &( ( pxCRCB )->… 171 List_t * pxEventList ) in vCoRoutineAddToDelayedList() 193 …vListInsert( ( List_t * ) pxOverflowDelayedCoRoutineList, ( ListItem_t * ) &( pxCurrentCoRoutine->… in vCoRoutineAddToDelayedList() 199 …vListInsert( ( List_t * ) pxDelayedCoRoutineList, ( ListItem_t * ) &( pxCurrentCoRoutine->xGeneric… in vCoRoutineAddToDelayedList() [all …]
|
| D | list.c | 49 void vListInitialise( List_t * const pxList ) in vListInitialise() 105 void vListInsertEnd( List_t * const pxList, in vListInsertEnd() 139 void vListInsert( List_t * const pxList, in vListInsert() 218 List_t * const pxList = pxItemToRemove->pxContainer; in uxListRemove()
|
| D | tasks.c | 243 List_t * pxTemp; \ 452 PRIVILEGED_DATA static List_t pxReadyTasksLists[ configMAX_PRIORITIES ]; /**< Prioritised ready tas… 453 PRIVILEGED_DATA static List_t xDelayedTaskList1; /**< Delayed tasks. */ 454 PRIVILEGED_DATA static List_t xDelayedTaskList2; /**< Delayed tasks (two li… 455 PRIVILEGED_DATA static List_t * volatile pxDelayedTaskList; /**< Points to the delayed… 456 PRIVILEGED_DATA static List_t * volatile pxOverflowDelayedTaskList; /**< Points to the delayed… 457 PRIVILEGED_DATA static List_t xPendingReadyList; /**< Tasks that have been … 461 …PRIVILEGED_DATA static List_t xTasksWaitingTermination; /**< Tasks that have been deleted - but th… 468 PRIVILEGED_DATA static List_t xSuspendedTaskList; /**< Tasks that are currently suspended. */ 629 List_t * pxList, [all …]
|
| D | timers.c | 143 PRIVILEGED_DATA static List_t xActiveTimerList1; 144 PRIVILEGED_DATA static List_t xActiveTimerList2; 145 PRIVILEGED_DATA static List_t * pxCurrentTimerList; 146 PRIVILEGED_DATA static List_t * pxOverflowTimerList; 1089 List_t * pxTemp; in prvSwitchTimerLists()
|
| D | event_groups.c | 51 List_t xTasksWaitingForBits; /**< List of tasks waiting for a bit to be set. */ 544 List_t const * pxList; in xEventGroupSetBits() 641 const List_t * pxTasksWaitingForBits; in vEventGroupDelete()
|
| D | queue.c | 114 …List_t xTasksWaitingToSend; /**< List of tasks that are blocked waiting to post onto t… 115 …List_t xTasksWaitingToReceive; /**< List of tasks that are blocked waiting to read from t…
|
| D | History.txt | 767 + The uxNumberOfItems member of List_t is now volatile - solving an issue
|
| /Kernel-v11.0.1/include/ |
| D | list.h | 179 } List_t; typedef 287 List_t * const pxConstList = ( pxList ); \ 318 List_t * const pxList = ( pxItemToRemove )->pxContainer; \ 433 void vListInitialise( List_t * const pxList ) PRIVILEGED_FUNCTION; 457 void vListInsert( List_t * const pxList, 479 void vListInsertEnd( List_t * const pxList,
|
| D | croutine.h | 738 List_t * pxEventList ); 747 BaseType_t xCoRoutineRemoveFromEventList( const List_t * pxEventList );
|
| D | task.h | 3500 void vTaskPlaceOnEventList( List_t * const pxEventList, 3502 void vTaskPlaceOnUnorderedEventList( List_t * pxEventList, 3517 void vTaskPlaceOnEventListRestricted( List_t * const pxEventList, 3545 BaseType_t xTaskRemoveFromEventList( const List_t * const pxEventList ) PRIVILEGED_FUNCTION;
|
| D | FreeRTOS.h | 2897 #define xList List_t
|