Searched refs:heap_info (Results 1 – 1 of 1) sorted by relevance
25 heap_task_info_params_t heap_info = {0}; in esp_dump_per_task_heap_info() local26 heap_info.caps[0] = MALLOC_CAP_8BIT; // Gets heap with CAP_8BIT capabilities in esp_dump_per_task_heap_info()27 heap_info.mask[0] = MALLOC_CAP_8BIT; in esp_dump_per_task_heap_info()28 heap_info.caps[1] = MALLOC_CAP_32BIT; // Gets heap info with CAP_32BIT capabilities in esp_dump_per_task_heap_info()29 heap_info.mask[1] = MALLOC_CAP_32BIT; in esp_dump_per_task_heap_info()30 heap_info.tasks = NULL; // Passing NULL captures heap info for all tasks in esp_dump_per_task_heap_info()31 heap_info.num_tasks = 0; in esp_dump_per_task_heap_info()32 heap_info.totals = s_totals_arr; // Gets task wise allocation details in esp_dump_per_task_heap_info()33 heap_info.num_totals = &s_prepopulated_num; in esp_dump_per_task_heap_info()34 heap_info.max_totals = MAX_TASK_NUM; // Maximum length of "s_totals_arr" in esp_dump_per_task_heap_info()[all …]