Home
last modified time | relevance | path

Searched refs:xNewQueue (Results 1 – 2 of 2) sorted by relevance

/device/soc/esp/esp32/components/osal/
Dqueue.c320 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
599xNewQueue = xQueueGenericCreateStatic( uxMutexLength, uxMutexSize, NULL, pxStaticQueue, ucQueueTyp… in xQueueCreateMutexStatic()
600 prvInitialiseMutex( ( Queue_t * ) xNewQueue ); in xQueueCreateMutexStatic()
[all …]
/device/soc/esp/esp32/components/osal/include/esp_osal/
Dqueue.h1469 BaseType_t xQueueGenericReset( QueueHandle_t xQueue, BaseType_t xNewQueue ) PRIVILEGED_FUNCTION;