Lines Matching refs:cRxLock
115 …volatile int8_t cRxLock; /*< Stores the number of items received from the queue (removed from the… member
248 if( ( pxQueue )->cRxLock == queueUNLOCKED ) \
250 ( pxQueue )->cRxLock = queueLOCKED_UNMODIFIED; \
277 pxQueue->cRxLock = queueUNLOCKED; in xQueueGenericReset()
1825 const int8_t cRxLock = pxQueue->cRxLock; in xQueueReceiveFromISR() local
1836 if( cRxLock == queueUNLOCKED ) in xQueueReceiveFromISR()
1867 pxQueue->cRxLock = ( int8_t ) ( cRxLock + 1 ); in xQueueReceiveFromISR()
2274 int8_t cRxLock = pxQueue->cRxLock; in prvUnlockQueue() local
2276 while( cRxLock > queueLOCKED_UNMODIFIED ) in prvUnlockQueue()
2289 --cRxLock; in prvUnlockQueue()
2297 pxQueue->cRxLock = queueUNLOCKED; in prvUnlockQueue()