Searched refs:StaticQueue_t (Results 1 – 8 of 8) sorted by relevance
/device/soc/esp/esp32/components/osal/include/esp_osal/ |
D | queue.h | 1236 QueueHandle_t xQueueCreateMutexStatic( const uint8_t ucQueueType, StaticQueue_t *pxStaticQueue ) PR… 1238 …atic( const UBaseType_t uxMaxCount, const UBaseType_t uxInitialCount, StaticQueue_t *pxStaticQueue… 1328 …xQueueLength, const UBaseType_t uxItemSize, uint8_t *pucQueueStorage, StaticQueue_t *pxStaticQueue…
|
D | esp_osal.h | 1234 } StaticQueue_t; typedef 1235 typedef StaticQueue_t StaticSemaphore_t;
|
/device/soc/esp/esp32/components/bt/controller/esp32/ |
D | bt.c | 524 StaticQueue_t *queue_buffer = NULL; in semphr_create_wrapper() 527 queue_buffer = heap_caps_malloc(sizeof(StaticQueue_t), MALLOC_CAP_INTERNAL|MALLOC_CAP_8BIT); in semphr_create_wrapper() 607 StaticQueue_t *queue_buffer = NULL; in mutex_create_wrapper() 610 queue_buffer = heap_caps_malloc(sizeof(StaticQueue_t), MALLOC_CAP_INTERNAL|MALLOC_CAP_8BIT); in mutex_create_wrapper() 678 StaticQueue_t *queue_buffer = NULL; in queue_create_wrapper() 682 queue_buffer = heap_caps_malloc(sizeof(StaticQueue_t), MALLOC_CAP_INTERNAL|MALLOC_CAP_8BIT); in queue_create_wrapper()
|
/device/soc/esp/esp32/components/esp_wifi/esp32/ |
D | esp_adapter.c | 125 …queue->storage = heap_caps_calloc(1, sizeof(StaticQueue_t) + (queue_len*item_size), MALLOC_CAP_INT… in wifi_create_queue() 130 … queue_len, item_size, ((uint8_t*)(queue->storage)) + sizeof(StaticQueue_t), (StaticQueue_t*)(queu… in wifi_create_queue()
|
/device/soc/esp/esp32/components/osal/ |
D | queue.c | 372 …xQueueLength, const UBaseType_t uxItemSize, uint8_t *pucQueueStorage, StaticQueue_t *pxStaticQueue… in xQueueGenericCreateStatic() 392 volatile size_t xSize = sizeof( StaticQueue_t ); in xQueueGenericCreateStatic() 590 QueueHandle_t xQueueCreateMutexStatic( const uint8_t ucQueueType, StaticQueue_t *pxStaticQueue ) in xQueueCreateMutexStatic() 701 …atic( const UBaseType_t uxMaxCount, const UBaseType_t uxInitialCount, StaticQueue_t *pxStaticQueue… in xQueueCreateCountingSemaphoreStatic()
|
/device/soc/esp/esp32/components/driver/ |
D | twai.c | 355 p_obj->tx_queue_struct = heap_caps_calloc(1, sizeof(StaticQueue_t), TWAI_MALLOC_CAPS); in twai_alloc_driver_obj() 361 p_obj->rx_queue_struct = heap_caps_calloc(1, sizeof(StaticQueue_t), TWAI_MALLOC_CAPS); in twai_alloc_driver_obj()
|
D | ledc.c | 49 StaticQueue_t ledc_fade_sem_storage; 664 … memset(&s_ledc_fade_rec[speed_mode][channel]->ledc_fade_sem_storage, 0, sizeof(StaticQueue_t)); in ledc_fade_channel_init_check()
|
D | i2c.c | 144 StaticQueue_t evt_queue_buffer; /*!< The buffer that will hold the queue structure*/ 313 memset(&p_i2c->evt_queue_buffer, 0, sizeof(StaticQueue_t)); in i2c_driver_install()
|