Lines Matching refs:cRxLock
121 …volatile int8_t cRxLock; /**< Stores the number of items received from the queue (r… member
261 if( ( pxQueue )->cRxLock == queueUNLOCKED ) \
263 ( pxQueue )->cRxLock = queueLOCKED_UNMODIFIED; \
292 #define prvIncrementQueueRxLock( pxQueue, cRxLock ) \ argument
295 if( ( UBaseType_t ) ( cRxLock ) < uxNumberOfTasks ) \
297 configASSERT( ( cRxLock ) != queueINT8_MAX ); \
298 ( pxQueue )->cRxLock = ( int8_t ) ( ( cRxLock ) + ( int8_t ) 1 ); \
324 pxQueue->cRxLock = queueUNLOCKED; in xQueueGenericReset()
2074 const int8_t cRxLock = pxQueue->cRxLock; in xQueueReceiveFromISR() local
2085 if( cRxLock == queueUNLOCKED ) in xQueueReceiveFromISR()
2116 prvIncrementQueueRxLock( pxQueue, cRxLock ); in xQueueReceiveFromISR()
2585 int8_t cRxLock = pxQueue->cRxLock; in prvUnlockQueue() local
2587 while( cRxLock > queueLOCKED_UNMODIFIED ) in prvUnlockQueue()
2600 --cRxLock; in prvUnlockQueue()
2608 pxQueue->cRxLock = queueUNLOCKED; in prvUnlockQueue()