Lines Matching refs:pxQueueSetContainer
129 struct QueueDefinition * pxQueueSetContainer; member
604 pxNewQueue->pxQueueSetContainer = NULL; in prvInitialiseNewQueue()
977 if( pxQueue->pxQueueSetContainer != NULL ) in xQueueGenericSend()
1215 if( pxQueue->pxQueueSetContainer != NULL ) in xQueueGenericSendFromISR()
1395 if( pxQueue->pxQueueSetContainer != NULL ) in xQueueGiveFromISR()
2501 if( pxQueue->pxQueueSetContainer != NULL ) in prvUnlockQueue()
3191 if( ( ( Queue_t * ) xQueueOrSemaphore )->pxQueueSetContainer != NULL ) in xQueueAddToSet()
3204 ( ( Queue_t * ) xQueueOrSemaphore )->pxQueueSetContainer = xQueueSet; in xQueueAddToSet()
3228 if( pxQueueOrSemaphore->pxQueueSetContainer != xQueueSet ) in xQueueRemoveFromSet()
3245 pxQueueOrSemaphore->pxQueueSetContainer = NULL; in xQueueRemoveFromSet()
3300 Queue_t * pxQueueSetContainer = pxQueue->pxQueueSetContainer; in prvNotifyQueueSetContainer() local
3308 configASSERT( pxQueueSetContainer ); /* LCOV_EXCL_BR_LINE */ in prvNotifyQueueSetContainer()
3309 configASSERT( pxQueueSetContainer->uxMessagesWaiting < pxQueueSetContainer->uxLength ); in prvNotifyQueueSetContainer()
3311 if( pxQueueSetContainer->uxMessagesWaiting < pxQueueSetContainer->uxLength ) in prvNotifyQueueSetContainer()
3313 const int8_t cTxLock = pxQueueSetContainer->cTxLock; in prvNotifyQueueSetContainer()
3315 traceQUEUE_SET_SEND( pxQueueSetContainer ); in prvNotifyQueueSetContainer()
3318 xReturn = prvCopyDataToQueue( pxQueueSetContainer, &pxQueue, queueSEND_TO_BACK ); in prvNotifyQueueSetContainer()
3322 … if( listLIST_IS_EMPTY( &( pxQueueSetContainer->xTasksWaitingToReceive ) ) == pdFALSE ) in prvNotifyQueueSetContainer()
3324 … if( xTaskRemoveFromEventList( &( pxQueueSetContainer->xTasksWaitingToReceive ) ) != pdFALSE ) in prvNotifyQueueSetContainer()
3341 prvIncrementQueueTxLock( pxQueueSetContainer, cTxLock ); in prvNotifyQueueSetContainer()