Searched refs:uxLength (Results 1 – 1 of 1) sorted by relevance
112 …UBaseType_t uxLength; /*< The length of the queue defined as the number of items it will hold, n… member273 …pxQueue->u.xQueue.pcTail = pxQueue->pcHead + ( pxQueue->uxLength * pxQueue->uxItemSize ); /*lint !… in xQueueGenericReset()276 …pxQueue->u.xQueue.pcReadFrom = pxQueue->pcHead + ( ( pxQueue->uxLength - 1U ) * pxQueue->uxItemSiz… in xQueueGenericReset()467 pxNewQueue->uxLength = uxQueueLength; in prvInitialiseNewQueue()772 configASSERT( !( ( xCopyPosition == queueOVERWRITE ) && ( pxQueue->uxLength != 1 ) ) ); in xQueueGenericSend()796 if( ( pxQueue->uxMessagesWaiting < pxQueue->uxLength ) || ( xCopyPosition == queueOVERWRITE ) ) in xQueueGenericSend()986 configASSERT( !( ( xCopyPosition == queueOVERWRITE ) && ( pxQueue->uxLength != 1 ) ) ); in xQueueGenericSendFromISR()1013 if( ( pxQueue->uxMessagesWaiting < pxQueue->uxLength ) || ( xCopyPosition == queueOVERWRITE ) ) in xQueueGenericSendFromISR()1181 if( uxMessagesWaiting < pxQueue->uxLength ) in xQueueGiveFromISR()1967 uxReturn = pxQueue->uxLength - pxQueue->uxMessagesWaiting; in uxQueueSpacesAvailable()[all …]