Lines Matching refs:summary
260 esp_err_t heap_trace_summary(heap_trace_summary_t *summary) in heap_trace_summary() argument
262 if (summary == NULL) { in heap_trace_summary()
267 summary->mode = mode; in heap_trace_summary()
268 summary->total_allocations = total_allocations; in heap_trace_summary()
269 summary->total_frees = total_frees; in heap_trace_summary()
270 summary->count = records.count; in heap_trace_summary()
271 summary->capacity = records.capacity; in heap_trace_summary()
272 summary->high_water_mark = records.high_water_mark; in heap_trace_summary()
273 summary->has_overflowed = records.has_overflowed; in heap_trace_summary()
275 summary->total_hashmap_hits = total_hashmap_hits; in heap_trace_summary()
276 summary->total_hashmap_miss = total_hashmap_miss; in heap_trace_summary()