Lines Matching refs:xNewQueue
304 BaseType_t xNewQueue ) in xQueueGenericReset() argument
309 traceENTER_xQueueGenericReset( xQueue, xNewQueue ); in xQueueGenericReset()
327 if( xNewQueue == pdFALSE ) in xQueueGenericReset()
649 QueueHandle_t xNewQueue; in xQueueCreateMutex() local
654 xNewQueue = xQueueGenericCreate( uxMutexLength, uxMutexSize, ucQueueType ); in xQueueCreateMutex()
655 prvInitialiseMutex( ( Queue_t * ) xNewQueue ); in xQueueCreateMutex()
657 traceRETURN_xQueueCreateMutex( xNewQueue ); in xQueueCreateMutex()
659 return xNewQueue; in xQueueCreateMutex()
670 QueueHandle_t xNewQueue; in xQueueCreateMutexStatic() local
679 …xNewQueue = xQueueGenericCreateStatic( uxMutexLength, uxMutexSize, NULL, pxStaticQueue, ucQueueTyp… in xQueueCreateMutexStatic()
680 prvInitialiseMutex( ( Queue_t * ) xNewQueue ); in xQueueCreateMutexStatic()
682 traceRETURN_xQueueCreateMutexStatic( xNewQueue ); in xQueueCreateMutexStatic()
684 return xNewQueue; in xQueueCreateMutexStatic()