Home
last modified time | relevance | path

Searched refs:xQueueGenericCreate (Results 1 – 4 of 4) sorted by relevance

/device/soc/esp/esp32/components/osal/include/esp_osal/
Dsemphr.h101 …( xSemaphore ) = xQueueGenericCreate( ( UBaseType_t ) 1, semSEMAPHORE_QUEUE_ITEM_LENGTH, queueQUEU…
164 …#define xSemaphoreCreateBinary() xQueueGenericCreate( ( UBaseType_t ) 1, semSEMAPHORE_QUEUE_ITEM_L…
Dqueue.h129 …#define xQueueCreate( uxQueueLength, uxItemSize ) xQueueGenericCreate( ( uxQueueLength ), ( uxItem…
1319 …QueueHandle_t xQueueGenericCreate( const UBaseType_t uxQueueLength, const UBaseType_t uxItemSize, …
Dmpu_wrappers.h107 #define xQueueGenericCreate MPU_xQueueGenericCreate macro
/device/soc/esp/esp32/components/osal/
Dqueue.c430 …QueueHandle_t xQueueGenericCreate( const UBaseType_t uxQueueLength, const UBaseType_t uxItemSize, … in xQueueGenericCreate() function
579 xNewQueue = xQueueGenericCreate( uxMutexLength, uxMutexSize, ucQueueType ); in xQueueCreateMutex()
736 …xHandle = xQueueGenericCreate( uxMaxCount, queueSEMAPHORE_QUEUE_ITEM_LENGTH, queueQUEUE_TYPE_COUNT… in xQueueCreateCountingSemaphore()