Searched refs:cache_sz (Results 1 – 3 of 3) sorted by relevance
/hal_espressif-3.6.0/components/spiffs/test_spiffs_host/ |
D | test_spiffs.cpp | 50 uint32_t cache_sz = sizeof(spiffs_cache) + max_files * (sizeof(spiffs_cache_page) in init_spiffs() local 52 uint8_t *cache = (uint8_t*) malloc(cache_sz); in init_spiffs() 54 uint32_t cache_sz = 0; in init_spiffs() local 61 cache, cache_sz, spiffs_api_check); in init_spiffs() 68 cache, cache_sz, spiffs_api_check); in init_spiffs()
|
/hal_espressif-3.6.0/components/spiffs/ |
D | esp_spiffs.c | 217 efs->cache_sz = sizeof(spiffs_cache) + conf->max_files * (sizeof(spiffs_cache_page) in esp_spiffs_init() 219 efs->cache = malloc(efs->cache_sz); in esp_spiffs_init() 225 memset(efs->cache, 0, efs->cache_sz); in esp_spiffs_init() 249 efs->cache, efs->cache_sz, spiffs_api_check); in esp_spiffs_init() 262 efs->cache, efs->cache_sz, spiffs_api_check); in esp_spiffs_init() 337 _efs[index]->cache_sz, spiffs_api_check); in esp_spiffs_format()
|
D | spiffs_api.h | 44 uint32_t cache_sz; /*!< Cache Buffer Length */ member
|