Home
last modified time | relevance | path

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

/Kernel-v10.6.2/
Dqueue.c325 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) in xQueueGenericReset()
948 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) in xQueueGenericSend()
983 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) in xQueueGenericSend()
1182 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) in xQueueGenericSendFromISR()
1210 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) in xQueueGenericSendFromISR()
1351 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) in xQueueGiveFromISR()
1379 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) in xQueueGiveFromISR()
1470 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) in xQueueReceive()
1633 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) in xQueueSemaphoreTake()
1829 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) in xQueuePeek()
[all …]
Dcroutine.c207 while( listLIST_IS_EMPTY( &xPendingReadyCoRoutineList ) == pdFALSE ) in prvCheckPendingReadyList()
249 while( listLIST_IS_EMPTY( pxDelayedCoRoutineList ) == pdFALSE ) in prvCheckDelayedList()
298 while( listLIST_IS_EMPTY( &( pxReadyCoRoutineLists[ uxTopCoRoutineReadyPriority ] ) ) ) in vCoRoutineSchedule()
Dtimers.c661 xListWasEmpty = listLIST_IS_EMPTY( pxOverflowTimerList ); in prvProcessTimerOrBlockTask()
699 *pxListWasEmpty = listLIST_IS_EMPTY( pxCurrentTimerList ); in prvGetNextExpireTime()
939 while( listLIST_IS_EMPTY( pxCurrentTimerList ) == pdFALSE ) in prvSwitchTimerLists()
Dtasks.c141 while( listLIST_IS_EMPTY( &( pxReadyTasksLists[ uxTopPriority ] ) ) ) \
206 configASSERT( ( listLIST_IS_EMPTY( pxDelayedTaskList ) ) ); \
2212 while( listLIST_IS_EMPTY( &xPendingReadyList ) == pdFALSE ) in xTaskResumeAll()
2819 if( listLIST_IS_EMPTY( pxDelayedTaskList ) != pdFALSE ) in xTaskIncrementTick()
4069 if( listLIST_IS_EMPTY( pxDelayedTaskList ) != pdFALSE ) in prvResetNextTaskUnblockTime()
/Kernel-v10.6.2/include/
Dlist.h258 #define listLIST_IS_EMPTY( pxList ) ( ( ( pxList )->uxNumberOfItems == ( UBas… macro