Lines Matching refs:xNewQueue
304 BaseType_t xNewQueue ) in xQueueGenericReset() argument
309 traceENTER_xQueueGenericReset( xQueue, xNewQueue ); in xQueueGenericReset()
327 if( xNewQueue == pdFALSE ) in xQueueGenericReset()
646 QueueHandle_t xNewQueue; in xQueueCreateMutex() local
651 xNewQueue = xQueueGenericCreate( uxMutexLength, uxMutexSize, ucQueueType ); in xQueueCreateMutex()
652 prvInitialiseMutex( ( Queue_t * ) xNewQueue ); in xQueueCreateMutex()
654 traceRETURN_xQueueCreateMutex( xNewQueue ); in xQueueCreateMutex()
656 return xNewQueue; in xQueueCreateMutex()
667 QueueHandle_t xNewQueue; in xQueueCreateMutexStatic() local
676 …xNewQueue = xQueueGenericCreateStatic( uxMutexLength, uxMutexSize, NULL, pxStaticQueue, ucQueueTyp… in xQueueCreateMutexStatic()
677 prvInitialiseMutex( ( Queue_t * ) xNewQueue ); in xQueueCreateMutexStatic()
679 traceRETURN_xQueueCreateMutexStatic( xNewQueue ); in xQueueCreateMutexStatic()
681 return xNewQueue; in xQueueCreateMutexStatic()