Lines Matching refs:pxQueueSetContainer
123 struct QueueDefinition *pxQueueSetContainer; member
479 pxNewQueue->pxQueueSetContainer = NULL; in prvInitialiseNewQueue()
806 if( pxQueue->pxQueueSetContainer != NULL ) in xQueueGenericSend()
1032 if( pxQueue->pxQueueSetContainer != NULL ) in xQueueGenericSendFromISR()
1201 if( pxQueue->pxQueueSetContainer != NULL ) in xQueueGiveFromISR()
2202 if( pxQueue->pxQueueSetContainer != NULL ) in prvUnlockQueue()
2809 if( ( ( Queue_t * ) xQueueOrSemaphore )->pxQueueSetContainer != NULL ) in xQueueAddToSet()
2822 ( ( Queue_t * ) xQueueOrSemaphore )->pxQueueSetContainer = xQueueSet; in xQueueAddToSet()
2841 if( pxQueueOrSemaphore->pxQueueSetContainer != xQueueSet ) in xQueueRemoveFromSet()
2858 pxQueueOrSemaphore->pxQueueSetContainer = NULL; in xQueueRemoveFromSet()
2900 Queue_t *pxQueueSetContainer = pxQueue->pxQueueSetContainer; in prvNotifyQueueSetContainer() local
2905 configASSERT( pxQueueSetContainer ); in prvNotifyQueueSetContainer()
2908 portENTER_CRITICAL(&(pxQueueSetContainer->mux)); in prvNotifyQueueSetContainer()
2910 configASSERT( pxQueueSetContainer->uxMessagesWaiting < pxQueueSetContainer->uxLength ); in prvNotifyQueueSetContainer()
2912 if( pxQueueSetContainer->uxMessagesWaiting < pxQueueSetContainer->uxLength ) in prvNotifyQueueSetContainer()
2914 const int8_t cTxLock = pxQueueSetContainer->cTxLock; in prvNotifyQueueSetContainer()
2916 traceQUEUE_SEND( pxQueueSetContainer ); in prvNotifyQueueSetContainer()
2919 xReturn = prvCopyDataToQueue( pxQueueSetContainer, &pxQueue, xCopyPosition ); in prvNotifyQueueSetContainer()
2923 if( listLIST_IS_EMPTY( &( pxQueueSetContainer->xTasksWaitingToReceive ) ) == pdFALSE ) in prvNotifyQueueSetContainer()
2925 if( xTaskRemoveFromEventList( &( pxQueueSetContainer->xTasksWaitingToReceive ) ) != pdFALSE ) in prvNotifyQueueSetContainer()
2942 pxQueueSetContainer->cTxLock = ( int8_t ) ( cTxLock + 1 ); in prvNotifyQueueSetContainer()
2951 portEXIT_CRITICAL(&(pxQueueSetContainer->mux)); in prvNotifyQueueSetContainer()