Home
last modified time | relevance | path

Searched refs:StaticQueue_t (Results 1 – 8 of 8) sorted by relevance

/device/soc/esp/esp32/components/osal/include/esp_osal/
Dqueue.h1236 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…
Desp_osal.h1234 } StaticQueue_t; typedef
1235 typedef StaticQueue_t StaticSemaphore_t;
/device/soc/esp/esp32/components/bt/controller/esp32/
Dbt.c524 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/
Desp_adapter.c125 …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/
Dqueue.c372 …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/
Dtwai.c355 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()
Dledc.c49 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()
Di2c.c144 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()