Lines Matching refs:xNewQueue
320 BaseType_t xQueueGenericReset( QueueHandle_t xQueue, BaseType_t xNewQueue ) in xQueueGenericReset() argument
326 if( xNewQueue == pdTRUE ) in xQueueGenericReset()
340 if( xNewQueue == pdFALSE ) in xQueueGenericReset()
576 QueueHandle_t xNewQueue; in xQueueCreateMutex() local
579 xNewQueue = xQueueGenericCreate( uxMutexLength, uxMutexSize, ucQueueType ); in xQueueCreateMutex()
580 prvInitialiseMutex( ( Queue_t * ) xNewQueue ); in xQueueCreateMutex()
582 return xNewQueue; in xQueueCreateMutex()
592 QueueHandle_t xNewQueue; in xQueueCreateMutexStatic() local
599 …xNewQueue = xQueueGenericCreateStatic( uxMutexLength, uxMutexSize, NULL, pxStaticQueue, ucQueueTyp… in xQueueCreateMutexStatic()
600 prvInitialiseMutex( ( Queue_t * ) xNewQueue ); in xQueueCreateMutexStatic()
602 return xNewQueue; in xQueueCreateMutexStatic()