Home
last modified time | relevance | path

Searched refs:esp_heap_runtime (Results 1 – 2 of 2) sorted by relevance

/Zephyr-latest/soc/espressif/common/
Desp_heap_runtime.c26 static struct k_heap esp_heap_runtime; variable
33 k_heap_init(&esp_heap_runtime, esp_heap_runtime_init_mem, ESP_HEAP_RUNTIME_MAX_SIZE); in esp_heap_runtime_init()
48 return k_heap_alloc(&esp_heap_runtime, size, K_NO_WAIT); in esp_heap_runtime_malloc()
58 void *ptr = k_heap_alloc(&esp_heap_runtime, sz, K_NO_WAIT); in esp_heap_runtime_calloc()
69 return k_heap_realloc(&esp_heap_runtime, ptr, bytes, K_NO_WAIT); in esp_heap_runtime_realloc()
74 k_heap_free(&esp_heap_runtime, mem); in esp_heap_runtime_free()
DCMakeLists.txt7 zephyr_sources_ifdef(CONFIG_ESP_HEAP_RUNTIME esp_heap_runtime.c)