/hal_espressif-latest/components/bt/porting/mem/ |
D | bt_osi_mem.c | 18 mem = heap_caps_malloc(size, MALLOC_CAP_INTERNAL|MALLOC_CAP_8BIT); in bt_osi_mem_malloc() 20 mem = heap_caps_malloc(size, MALLOC_CAP_SPIRAM|MALLOC_CAP_8BIT); in bt_osi_mem_malloc() 52 return heap_caps_malloc(size, MALLOC_CAP_INTERNAL|MALLOC_CAP_8BIT|MALLOC_CAP_DMA); in bt_osi_mem_malloc_internal()
|
/hal_espressif-latest/zephyr/port/include/ |
D | esp_heap_caps_adapter.h | 54 void *heap_caps_malloc(size_t size, uint32_t caps);
|
/hal_espressif-latest/zephyr/port/heap/ |
D | heap_caps_zephyr.c | 64 void *heap_caps_malloc( size_t size, uint32_t caps) in heap_caps_malloc() function 82 return heap_caps_malloc(size, MALLOC_CAP_DEFAULT); in heap_caps_malloc_prefer()
|
/hal_espressif-latest/components/heap/ |
D | heap_caps_linux.c | 57 void *heap_caps_malloc( size_t size, uint32_t caps) in heap_caps_malloc() function 77 return heap_caps_malloc(size, MALLOC_CAP_DEFAULT); in heap_caps_malloc_prefer()
|
D | CMakeLists.txt | 57 heap_caps_malloc
|
D | internals.md | 5 …p_attr.h](./../../components/esp_common/include/esp_attr.h) (e.g., `heap_caps_malloc`, `heap_caps_…
|
D | heap_caps_init.c | 224 heap_t *p_new = heap_caps_malloc(sizeof(heap_t), MALLOC_CAP_INTERNAL|MALLOC_CAP_8BIT); in heap_caps_add_region_with_caps()
|
/hal_espressif-latest/components/esp_coex/esp32s2/ |
D | esp_coex_adapter.c | 48 void *mux = heap_caps_malloc(sizeof(portMUX_TYPE), MALLOC_CAP_8BIT|MALLOC_CAP_INTERNAL); in esp_coex_common_spin_lock_create_wrapper() 128 return heap_caps_malloc(size, MALLOC_CAP_8BIT|MALLOC_CAP_DMA|MALLOC_CAP_INTERNAL); in esp_coex_common_malloc_internal_wrapper()
|
/hal_espressif-latest/components/esp_coex/esp32/ |
D | esp_coex_adapter.c | 46 void *mux = heap_caps_malloc(sizeof(portMUX_TYPE), MALLOC_CAP_8BIT|MALLOC_CAP_INTERNAL); in esp_coex_common_spin_lock_create_wrapper() 126 return heap_caps_malloc(size, MALLOC_CAP_8BIT|MALLOC_CAP_DMA|MALLOC_CAP_INTERNAL); in esp_coex_common_malloc_internal_wrapper()
|
/hal_espressif-latest/components/esp_coex/esp32s3/ |
D | esp_coex_adapter.c | 49 void *mux = heap_caps_malloc(sizeof(portMUX_TYPE), MALLOC_CAP_8BIT|MALLOC_CAP_INTERNAL); in esp_coex_common_spin_lock_create_wrapper() 129 return heap_caps_malloc(size, MALLOC_CAP_8BIT|MALLOC_CAP_DMA|MALLOC_CAP_INTERNAL); in esp_coex_common_malloc_internal_wrapper()
|
/hal_espressif-latest/components/spi_flash/sim/stubs/log/include/ |
D | esp_log.h | 21 #define heap_caps_malloc(a, b) NULL macro
|
/hal_espressif-latest/components/esp_hw_support/ |
D | sleep_event.c | 30 …esp_sleep_event_cb_config_t *new_config = (esp_sleep_event_cb_config_t *)heap_caps_malloc(sizeof(e… in esp_sleep_register_event_callback()
|
D | intr_alloc.c | 149 …vector_desc_t *newvd = heap_caps_malloc(sizeof(vector_desc_t), MALLOC_CAP_INTERNAL | MALLOC_CAP_8B… in get_desc_for_int() 531 ret = heap_caps_malloc(sizeof(intr_handle_data_t), MALLOC_CAP_INTERNAL | MALLOC_CAP_8BIT); in esp_intr_alloc_intrstatus() 557 …shared_vector_desc_t *sh_vec = heap_caps_malloc(sizeof(shared_vector_desc_t), MALLOC_CAP_INTERNAL … in esp_intr_alloc_intrstatus() 580 …non_shared_isr_arg_t *ns_isr_arg = heap_caps_malloc(sizeof(non_shared_isr_arg_t), MALLOC_CAP_INTER… in esp_intr_alloc_intrstatus()
|
D | rtc_module.c | 115 rtc_isr_handler_t* item = heap_caps_malloc(sizeof(*item), MALLOC_CAP_INTERNAL); in rtc_isr_register()
|
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_common/ |
D | mesh_common.c | 19 return heap_caps_malloc(size, MALLOC_CAP_INTERNAL|MALLOC_CAP_8BIT); in bt_mesh_malloc()
|
/hal_espressif-latest/components/heap/include/ |
D | esp_heap_caps.h | 94 void *heap_caps_malloc(size_t size, uint32_t caps);
|
/hal_espressif-latest/components/esp_coex/esp32h2/ |
D | esp_coex_adapter.c | 123 return heap_caps_malloc(size, MALLOC_CAP_8BIT | MALLOC_CAP_DMA | MALLOC_CAP_INTERNAL); in esp_coex_common_malloc_internal_wrapper()
|
/hal_espressif-latest/components/esp_coex/esp32c2/ |
D | esp_coex_adapter.c | 123 return heap_caps_malloc(size, MALLOC_CAP_8BIT|MALLOC_CAP_DMA|MALLOC_CAP_INTERNAL); in esp_coex_common_malloc_internal_wrapper()
|
/hal_espressif-latest/components/esp_coex/esp32c3/ |
D | esp_coex_adapter.c | 124 return heap_caps_malloc(size, MALLOC_CAP_8BIT|MALLOC_CAP_DMA|MALLOC_CAP_INTERNAL); in esp_coex_common_malloc_internal_wrapper()
|
/hal_espressif-latest/components/esp_coex/esp32c6/ |
D | esp_coex_adapter.c | 131 return heap_caps_malloc(size, MALLOC_CAP_8BIT | MALLOC_CAP_DMA | MALLOC_CAP_INTERNAL); in esp_coex_common_malloc_internal_wrapper()
|
/hal_espressif-latest/components/spi_flash/ |
D | flash_ops.c | 120 return heap_caps_malloc(size, MALLOC_CAP_8BIT|MALLOC_CAP_INTERNAL); in spi_flash_malloc_internal()
|
D | esp_flash_spi_init.c | 236 chip = (esp_flash_t*)heap_caps_malloc(sizeof(esp_flash_t), caps); in spi_bus_add_flash_device() 242 host = (memspi_host_inst_t*)heap_caps_malloc(sizeof(memspi_host_inst_t), caps); in spi_bus_add_flash_device()
|
/hal_espressif-latest/components/spi_flash/sim/ |
D | flash_mock.cpp | 135 void *heap_caps_malloc( size_t size, uint32_t caps ) in heap_caps_malloc() function
|
/hal_espressif-latest/components/esp_psram/ |
D | Kconfig.spiram.common | 28 … needing heap_caps_malloc to allocate, or by fully integrating it making malloc() also able to 34 bool "Make RAM allocatable using heap_caps_malloc(..., MALLOC_CAP_SPIRAM)"
|
/hal_espressif-latest/components/mbedtls/port/sha/dma/ |
D | sha.c | 243 …dma_cap_buf = heap_caps_malloc(sizeof(unsigned char) * buf_len, MALLOC_CAP_8BIT|MALLOC_CAP_DMA|MAL… in esp_sha_dma()
|