Lines Matching refs:xHandle

156         QueueHandle_t xHandle;  member
866 QueueHandle_t xHandle = NULL; in xQueueCreateCountingSemaphoreStatic() local
873xHandle = xQueueGenericCreateStatic( uxMaxCount, queueSEMAPHORE_QUEUE_ITEM_LENGTH, NULL, pxStaticQ… in xQueueCreateCountingSemaphoreStatic()
875 if( xHandle != NULL ) in xQueueCreateCountingSemaphoreStatic()
877 ( ( Queue_t * ) xHandle )->uxMessagesWaiting = uxInitialCount; in xQueueCreateCountingSemaphoreStatic()
888 configASSERT( xHandle ); in xQueueCreateCountingSemaphoreStatic()
892 traceRETURN_xQueueCreateCountingSemaphoreStatic( xHandle ); in xQueueCreateCountingSemaphoreStatic()
894 return xHandle; in xQueueCreateCountingSemaphoreStatic()
905 QueueHandle_t xHandle = NULL; in xQueueCreateCountingSemaphore() local
912xHandle = xQueueGenericCreate( uxMaxCount, queueSEMAPHORE_QUEUE_ITEM_LENGTH, queueQUEUE_TYPE_COUNT… in xQueueCreateCountingSemaphore()
914 if( xHandle != NULL ) in xQueueCreateCountingSemaphore()
916 ( ( Queue_t * ) xHandle )->uxMessagesWaiting = uxInitialCount; in xQueueCreateCountingSemaphore()
927 configASSERT( xHandle ); in xQueueCreateCountingSemaphore()
931 traceRETURN_xQueueCreateCountingSemaphore( xHandle ); in xQueueCreateCountingSemaphore()
933 return xHandle; in xQueueCreateCountingSemaphore()
3026 if( xQueue == xQueueRegistry[ ux ].xHandle ) in vQueueAddToRegistry()
3047 pxEntryToWrite->xHandle = xQueue; in vQueueAddToRegistry()
3074 if( xQueueRegistry[ ux ].xHandle == xQueue ) in pcQueueGetName()
3107 if( xQueueRegistry[ ux ].xHandle == xQueue ) in vQueueUnregisterQueue()
3115 xQueueRegistry[ ux ].xHandle = ( QueueHandle_t ) 0; in vQueueUnregisterQueue()