Lines Matching full:counts
34 IOCounts counts; member
112 GList *counts; in plugin_exit() local
125 counts = g_hash_table_get_values(devices); in plugin_exit()
126 if (counts && g_list_next(counts)) { in plugin_exit()
129 it = g_list_sort_with_data(counts, sort_cmp, NULL); in plugin_exit()
143 fmt_iocount_record(report, &loc->counts); in plugin_exit()
208 DeviceCounts *counts; in vcpu_haddr() local
211 counts = (DeviceCounts *) g_hash_table_lookup(devices, name); in vcpu_haddr()
213 if (!counts) { in vcpu_haddr()
215 counts = new_count(name, base); in vcpu_haddr()
219 if (g_strv_contains((const char * const *)matches, counts->name)) { in vcpu_haddr()
220 hwprofile_match_hit(counts, off); in vcpu_haddr()
221 inc_count(&counts->totals, is_write, cpu_index); in vcpu_haddr()
224 inc_count(&counts->totals, is_write, cpu_index); in vcpu_haddr()
233 IOLocationCounts *io_count = g_hash_table_lookup(counts->detail, in vcpu_haddr()
236 io_count = new_location(counts->detail, off); in vcpu_haddr()
238 inc_count(&io_count->counts, is_write, cpu_index); in vcpu_haddr()