Searched refs:listLIST_IS_EMPTY (Results 1 – 5 of 5) sorted by relevance
312 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) in xQueueGenericReset()881 … if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) in xQueueGenericSend()916 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) in xQueueGenericSend()1126 … if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) in xQueueGenericSendFromISR()1154 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) in xQueueGenericSendFromISR()1296 … if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) in xQueueGiveFromISR()1324 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) in xQueueGiveFromISR()1416 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) in xQueueReceive()1596 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE ) in xQueueSemaphoreTake()1818 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE ) in xQueuePeek()[all …]
205 while( listLIST_IS_EMPTY( &xPendingReadyCoRoutineList ) == pdFALSE ) in prvCheckPendingReadyList()247 while( listLIST_IS_EMPTY( pxDelayedCoRoutineList ) == pdFALSE ) in prvCheckDelayedList()296 while( listLIST_IS_EMPTY( &( pxReadyCoRoutineLists[ uxTopCoRoutineReadyPriority ] ) ) ) in vCoRoutineSchedule()
648 xListWasEmpty = listLIST_IS_EMPTY( pxOverflowTimerList ); in prvProcessTimerOrBlockTask()696 *pxListWasEmpty = listLIST_IS_EMPTY( pxCurrentTimerList ); in prvGetNextExpireTime()940 while( listLIST_IS_EMPTY( pxCurrentTimerList ) == pdFALSE ) in prvSwitchTimerLists()
156 while( listLIST_IS_EMPTY( &( pxReadyTasksLists[ uxTopPriority ] ) ) ) \222 configASSERT( ( listLIST_IS_EMPTY( pxDelayedTaskList ) ) ); \2528 while( listLIST_IS_EMPTY( &xPendingReadyList[xPortGetCoreID()] ) == pdFALSE ) in xTaskResumeAll()3140 if( listLIST_IS_EMPTY( pxDelayedTaskList ) != pdFALSE ) in xTaskIncrementTick()3379 if( listLIST_IS_EMPTY( &( pxReadyTasksLists[ uxCurPriority ] ) ) ) in taskSelectHighestPriorityTaskSMP()3653 if ( ( listLIST_IS_EMPTY( pxEventList ) ) == pdFALSE ) in xTaskRemoveFromEventList()4227 xListIsEmpty = listLIST_IS_EMPTY( &xTasksWaitingTermination ); in prvCheckTasksWaitingTermination()4613 if( listLIST_IS_EMPTY( pxDelayedTaskList ) != pdFALSE ) in prvResetNextTaskUnblockTime()
251 #define listLIST_IS_EMPTY( pxList ) ( ( ( pxList )->uxNumberOfItems == ( UBas… macro