Lines Matching refs:xHandle
153 QueueHandle_t xHandle; member
712 QueueHandle_t xHandle; in xQueueCreateCountingSemaphoreStatic() local
717 …xHandle = xQueueGenericCreateStatic( uxMaxCount, queueSEMAPHORE_QUEUE_ITEM_LENGTH, NULL, pxStaticQ… in xQueueCreateCountingSemaphoreStatic()
719 if( xHandle != NULL ) in xQueueCreateCountingSemaphoreStatic()
721 ( ( Queue_t * ) xHandle )->uxMessagesWaiting = uxInitialCount; in xQueueCreateCountingSemaphoreStatic()
730 return xHandle; in xQueueCreateCountingSemaphoreStatic()
740 QueueHandle_t xHandle; in xQueueCreateCountingSemaphore() local
745 …xHandle = xQueueGenericCreate( uxMaxCount, queueSEMAPHORE_QUEUE_ITEM_LENGTH, queueQUEUE_TYPE_COUNT… in xQueueCreateCountingSemaphore()
747 if( xHandle != NULL ) in xQueueCreateCountingSemaphore()
749 ( ( Queue_t * ) xHandle )->uxMessagesWaiting = uxInitialCount; in xQueueCreateCountingSemaphore()
758 return xHandle; in xQueueCreateCountingSemaphore()
2671 xQueueRegistry[ ux ].xHandle = xQueue; in vQueueAddToRegistry()
2699 if( xQueueRegistry[ ux ].xHandle == xQueue ) in pcQueueGetName()
2728 if( xQueueRegistry[ ux ].xHandle == xQueue ) in vQueueUnregisterQueue()
2736 xQueueRegistry[ ux ].xHandle = ( QueueHandle_t ) 0; in vQueueUnregisterQueue()