Home
last modified time | relevance | path

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

/hal_espressif-latest/components/heap/
Dheap_task_info.c35 if (params->totals) { in heap_caps_get_per_task_info()
38 params->totals[i].size[type] = 0; in heap_caps_get_per_task_info()
39 params->totals[i].count[type] = 0; in heap_caps_get_per_task_info()
74 if (params->totals) { in heap_caps_get_per_task_info()
77 if (params->totals[i].task == btask) { in heap_caps_get_per_task_info()
82 params->totals[i].size[type] += bsize; in heap_caps_get_per_task_info()
83 params->totals[i].count[type] += 1; in heap_caps_get_per_task_info()
87 params->totals[count].task = btask; in heap_caps_get_per_task_info()
88 params->totals[count].size[type] = bsize; in heap_caps_get_per_task_info()
89 params->totals[i].count[type] = 1; in heap_caps_get_per_task_info()
/hal_espressif-latest/components/heap/include/
Desp_heap_task_info.h66 heap_task_totals_t *totals; ///< Array of structs to collect task totals member