Lines Matching refs:cTxLock
116 …volatile int8_t cTxLock; /*< Stores the number of items transmitted to the queue (added to the qu… member
252 if( ( pxQueue )->cTxLock == queueUNLOCKED ) \
254 ( pxQueue )->cTxLock = queueLOCKED_UNMODIFIED; \
278 pxQueue->cTxLock = queueUNLOCKED; in xQueueGenericReset()
1015 const int8_t cTxLock = pxQueue->cTxLock; in xQueueGenericSendFromISR() local
1028 if( cTxLock == queueUNLOCKED ) in xQueueGenericSendFromISR()
1114 pxQueue->cTxLock = ( int8_t ) ( cTxLock + 1 ); in xQueueGenericSendFromISR()
1183 const int8_t cTxLock = pxQueue->cTxLock; in xQueueGiveFromISR() local
1197 if( cTxLock == queueUNLOCKED ) in xQueueGiveFromISR()
1283 pxQueue->cTxLock = ( int8_t ) ( cTxLock + 1 ); in xQueueGiveFromISR()
2193 int8_t cTxLock = pxQueue->cTxLock; in prvUnlockQueue() local
2196 while( cTxLock > queueLOCKED_UNMODIFIED ) in prvUnlockQueue()
2264 --cTxLock; in prvUnlockQueue()
2267 pxQueue->cTxLock = queueUNLOCKED; in prvUnlockQueue()
2914 const int8_t cTxLock = pxQueueSetContainer->cTxLock; in prvNotifyQueueSetContainer() local
2921 if( cTxLock == queueUNLOCKED ) in prvNotifyQueueSetContainer()
2942 pxQueueSetContainer->cTxLock = ( int8_t ) ( cTxLock + 1 ); in prvNotifyQueueSetContainer()