Lines Matching refs:pxQueueSetContainer
126 struct QueueDefinition * pxQueueSetContainer; member
581 pxNewQueue->pxQueueSetContainer = NULL; in prvInitialiseNewQueue()
923 if( pxQueue->pxQueueSetContainer != NULL ) in xQueueGenericSend()
1152 if( pxQueue->pxQueueSetContainer != NULL ) in xQueueGenericSendFromISR()
1328 if( pxQueue->pxQueueSetContainer != NULL ) in xQueueGiveFromISR()
2359 if( pxQueue->pxQueueSetContainer != NULL ) in prvUnlockQueue()
3003 if( ( ( Queue_t * ) xQueueOrSemaphore )->pxQueueSetContainer != NULL ) in xQueueAddToSet()
3016 ( ( Queue_t * ) xQueueOrSemaphore )->pxQueueSetContainer = xQueueSet; in xQueueAddToSet()
3036 if( pxQueueOrSemaphore->pxQueueSetContainer != xQueueSet ) in xQueueRemoveFromSet()
3053 pxQueueOrSemaphore->pxQueueSetContainer = NULL; in xQueueRemoveFromSet()
3096 Queue_t * pxQueueSetContainer = pxQueue->pxQueueSetContainer; in prvNotifyQueueSetContainer() local
3104 configASSERT( pxQueueSetContainer ); /* LCOV_EXCL_BR_LINE */ in prvNotifyQueueSetContainer()
3105 configASSERT( pxQueueSetContainer->uxMessagesWaiting < pxQueueSetContainer->uxLength ); in prvNotifyQueueSetContainer()
3107 if( pxQueueSetContainer->uxMessagesWaiting < pxQueueSetContainer->uxLength ) in prvNotifyQueueSetContainer()
3109 const int8_t cTxLock = pxQueueSetContainer->cTxLock; in prvNotifyQueueSetContainer()
3111 traceQUEUE_SET_SEND( pxQueueSetContainer ); in prvNotifyQueueSetContainer()
3114 xReturn = prvCopyDataToQueue( pxQueueSetContainer, &pxQueue, queueSEND_TO_BACK ); in prvNotifyQueueSetContainer()
3118 … if( listLIST_IS_EMPTY( &( pxQueueSetContainer->xTasksWaitingToReceive ) ) == pdFALSE ) in prvNotifyQueueSetContainer()
3120 … if( xTaskRemoveFromEventList( &( pxQueueSetContainer->xTasksWaitingToReceive ) ) != pdFALSE ) in prvNotifyQueueSetContainer()
3137 prvIncrementQueueTxLock( pxQueueSetContainer, cTxLock ); in prvNotifyQueueSetContainer()