Lines Matching refs:pxQueueSetContainer

129         struct QueueDefinition * pxQueueSetContainer;  member
604 pxNewQueue->pxQueueSetContainer = NULL; in prvInitialiseNewQueue()
977 if( pxQueue->pxQueueSetContainer != NULL ) in xQueueGenericSend()
1218 if( pxQueue->pxQueueSetContainer != NULL ) in xQueueGenericSendFromISR()
1401 if( pxQueue->pxQueueSetContainer != NULL ) in xQueueGiveFromISR()
2513 if( pxQueue->pxQueueSetContainer != NULL ) in prvUnlockQueue()
3203 if( ( ( Queue_t * ) xQueueOrSemaphore )->pxQueueSetContainer != NULL ) in xQueueAddToSet()
3216 ( ( Queue_t * ) xQueueOrSemaphore )->pxQueueSetContainer = xQueueSet; in xQueueAddToSet()
3240 if( pxQueueOrSemaphore->pxQueueSetContainer != xQueueSet ) in xQueueRemoveFromSet()
3257 pxQueueOrSemaphore->pxQueueSetContainer = NULL; in xQueueRemoveFromSet()
3312 Queue_t * pxQueueSetContainer = pxQueue->pxQueueSetContainer; in prvNotifyQueueSetContainer() local
3320 configASSERT( pxQueueSetContainer ); /* LCOV_EXCL_BR_LINE */ in prvNotifyQueueSetContainer()
3321 configASSERT( pxQueueSetContainer->uxMessagesWaiting < pxQueueSetContainer->uxLength ); in prvNotifyQueueSetContainer()
3323 if( pxQueueSetContainer->uxMessagesWaiting < pxQueueSetContainer->uxLength ) in prvNotifyQueueSetContainer()
3325 const int8_t cTxLock = pxQueueSetContainer->cTxLock; in prvNotifyQueueSetContainer()
3327 traceQUEUE_SET_SEND( pxQueueSetContainer ); in prvNotifyQueueSetContainer()
3330 xReturn = prvCopyDataToQueue( pxQueueSetContainer, &pxQueue, queueSEND_TO_BACK ); in prvNotifyQueueSetContainer()
3334 … if( listLIST_IS_EMPTY( &( pxQueueSetContainer->xTasksWaitingToReceive ) ) == pdFALSE ) in prvNotifyQueueSetContainer()
3336 … if( xTaskRemoveFromEventList( &( pxQueueSetContainer->xTasksWaitingToReceive ) ) != pdFALSE ) in prvNotifyQueueSetContainer()
3353 prvIncrementQueueTxLock( pxQueueSetContainer, cTxLock ); in prvNotifyQueueSetContainer()