Home
last modified time | relevance | path

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

/hal_espressif-3.5.0/components/freertos/include/freertos/
Dqueue.h1537 StaticQueue_t * pxStaticQueue ) PRIVILEGED_FUNCTION;
1542StaticQueue_t * pxStaticQueue ) PRIVILEGED_FUNCTION;
1640 StaticQueue_t * pxStaticQueue,
Dmpu_prototypes.h139 StaticQueue_t * pxStaticQueue ) FREERTOS_SYSTEM_CALL;
144StaticQueue_t * pxStaticQueue ) FREERTOS_SYSTEM_CALL;
159 StaticQueue_t * pxStaticQueue,
DFreeRTOS.h1300 } StaticQueue_t; typedef
1301 typedef StaticQueue_t StaticSemaphore_t;
/hal_espressif-3.5.0/components/bt/esp_ble_mesh/mesh_common/
Dmesh_mutex.c23 …mutex->buffer = heap_caps_calloc_prefer(1, sizeof(StaticQueue_t), 2, MALLOC_CAP_SPIRAM|MALLOC_CAP_… in bt_mesh_mutex_create()
25 …mutex->buffer = heap_caps_calloc_prefer(1, sizeof(StaticQueue_t), 2, MALLOC_CAP_INTERNAL|MALLOC_CA… in bt_mesh_mutex_create()
/hal_espressif-3.5.0/components/bt/esp_ble_mesh/mesh_common/include/
Dmesh_mutex.h21 StaticQueue_t *buffer;
/hal_espressif-3.5.0/components/bt/esp_ble_mesh/mesh_core/
Dadv.c53 StaticQueue_t *buffer;
599 …adv_queue.buffer = heap_caps_calloc_prefer(1, sizeof(StaticQueue_t), 2, MALLOC_CAP_SPIRAM|MALLOC_C… in bt_mesh_adv_init()
601 …adv_queue.buffer = heap_caps_calloc_prefer(1, sizeof(StaticQueue_t), 2, MALLOC_CAP_INTERNAL|MALLOC… in bt_mesh_adv_init()
620 …relay_queue.buffer = heap_caps_calloc_prefer(1, sizeof(StaticQueue_t), 2, MALLOC_CAP_SPIRAM|MALLOC… in bt_mesh_adv_init()
622 …relay_queue.buffer = heap_caps_calloc_prefer(1, sizeof(StaticQueue_t), 2, MALLOC_CAP_INTERNAL|MALL… in bt_mesh_adv_init()
/hal_espressif-3.5.0/components/esp_wifi/esp32/
Desp_adapter.c127 …queue->storage = heap_caps_calloc(1, sizeof(StaticQueue_t) + (queue_len*item_size), MALLOC_CAP_INT… in wifi_create_queue()
132 … queue_len, item_size, ((uint8_t*)(queue->storage)) + sizeof(StaticQueue_t), (StaticQueue_t*)(queu… in wifi_create_queue()
/hal_espressif-3.5.0/components/esp_wifi/esp32s2/
Desp_adapter.c109 …queue->storage = heap_caps_calloc(1, sizeof(StaticQueue_t) + (queue_len*item_size), MALLOC_CAP_INT… in wifi_create_queue()
114 … queue_len, item_size, ((uint8_t*)(queue->storage)) + sizeof(StaticQueue_t), (StaticQueue_t*)(queu… in wifi_create_queue()
/hal_espressif-3.5.0/components/esp_wifi/esp32s3/
Desp_adapter.c117 …queue->storage = heap_caps_calloc(1, sizeof(StaticQueue_t) + (queue_len*item_size), MALLOC_CAP_INT… in wifi_create_queue()
122 … queue_len, item_size, ((uint8_t*)(queue->storage)) + sizeof(StaticQueue_t), (StaticQueue_t*)(queu… in wifi_create_queue()
/hal_espressif-3.5.0/components/bt/controller/esp32/
Dbt.c631 StaticQueue_t *queue_buffer = NULL; in semphr_create_wrapper()
633 queue_buffer = heap_caps_malloc(sizeof(StaticQueue_t), MALLOC_CAP_INTERNAL|MALLOC_CAP_8BIT); in semphr_create_wrapper()
757 StaticQueue_t *queue_buffer = NULL; in mutex_create_wrapper()
760 queue_buffer = heap_caps_malloc(sizeof(StaticQueue_t), MALLOC_CAP_INTERNAL|MALLOC_CAP_8BIT); in mutex_create_wrapper()
828 StaticQueue_t *queue_buffer = NULL; in queue_create_wrapper()
832 queue_buffer = heap_caps_malloc(sizeof(StaticQueue_t), MALLOC_CAP_INTERNAL|MALLOC_CAP_8BIT); in queue_create_wrapper()
/hal_espressif-3.5.0/components/freertos/test/
Dtest_freertos_backported_functions.c86 static StaticQueue_t queue_buffer; //Queues, Semaphores, and Mutex use the same queue structu…
/hal_espressif-3.5.0/components/freertos/
Dqueue.c348 StaticQueue_t * pxStaticQueue, in xQueueGenericCreateStatic()
369 volatile size_t xSize = sizeof( StaticQueue_t ); in xQueueGenericCreateStatic()
576 StaticQueue_t * pxStaticQueue ) in xQueueCreateMutexStatic()
756 StaticQueue_t * pxStaticQueue ) in xQueueCreateCountingSemaphoreStatic()
Dtimers.c1007 …PRIVILEGED_DATA static StaticQueue_t xStaticTimerQueue; /*lint !e956 Ok to declare in this manner … in prvCheckForValidListAndQueue()
/hal_espressif-3.5.0/components/driver/
Dtwai.c349 p_obj->tx_queue_struct = heap_caps_calloc(1, sizeof(StaticQueue_t), TWAI_MALLOC_CAPS); in twai_alloc_driver_obj()
355 p_obj->rx_queue_struct = heap_caps_calloc(1, sizeof(StaticQueue_t), TWAI_MALLOC_CAPS); in twai_alloc_driver_obj()
Dledc.c38 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.c153 StaticQueue_t evt_queue_buffer; /*!< The buffer that will hold the queue structure*/
322 memset(&p_i2c->evt_queue_buffer, 0, sizeof(StaticQueue_t)); in i2c_driver_install()
Duart.c1466 uart_obj->event_queue_struct = heap_caps_calloc(1, sizeof(StaticQueue_t), UART_MALLOC_CAPS); in uart_alloc_driver_obj()