Home
last modified time | relevance | path

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

/Kernel-v11.1.0/
Dqueue.c334 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) in xQueueGenericReset()
1002 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) in xQueueGenericSend()
1037 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) in xQueueGenericSend()
1248 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) in xQueueGenericSendFromISR()
1276 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) in xQueueGenericSendFromISR()
1424 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) in xQueueGiveFromISR()
1452 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) in xQueueGiveFromISR()
1544 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) in xQueueReceive()
1714 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) in xQueueSemaphoreTake()
1925 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) in xQueuePeek()
[all …]
Dcroutine.c220 while( listLIST_IS_EMPTY( &xPendingReadyCoRoutineList ) == pdFALSE ) in prvCheckPendingReadyList()
262 while( listLIST_IS_EMPTY( pxDelayedCoRoutineList ) == pdFALSE ) in prvCheckDelayedList()
313 while( listLIST_IS_EMPTY( &( pxReadyCoRoutineLists[ uxTopCoRoutineReadyPriority ] ) ) ) in vCoRoutineSchedule()
Dtimers.c817 xListWasEmpty = listLIST_IS_EMPTY( pxOverflowTimerList ); in prvProcessTimerOrBlockTask()
855 *pxListWasEmpty = listLIST_IS_EMPTY( pxCurrentTimerList ); in prvGetNextExpireTime()
1095 while( listLIST_IS_EMPTY( pxCurrentTimerList ) == pdFALSE ) in prvSwitchTimerLists()
Dtasks.c183 while( listLIST_IS_EMPTY( &( pxReadyTasksLists[ uxTopPriority ] ) ) != pdFALSE ) \
253 configASSERT( ( listLIST_IS_EMPTY( pxDelayedTaskList ) ) ); \
1032 if( listLIST_IS_EMPTY( &( pxReadyTasksLists[ uxCurrentPriority ] ) ) == pdFALSE ) in prvSelectHighestPriorityTask()
3990 while( listLIST_IS_EMPTY( &xPendingReadyList ) == pdFALSE ) in xTaskResumeAll()
4718 if( listLIST_IS_EMPTY( pxDelayedTaskList ) != pdFALSE ) in xTaskIncrementTick()
6458 if( listLIST_IS_EMPTY( pxDelayedTaskList ) != pdFALSE ) in prvResetNextTaskUnblockTime()
/Kernel-v11.1.0/include/
Dlist.h258 #define listLIST_IS_EMPTY( pxList ) ( ( ( pxList )->uxNumberOfItems == ( UBas… macro