Lines Matching refs:counts
34 IOCounts counts; member
110 GList *counts; in plugin_exit() local
123 counts = g_hash_table_get_values(devices); in plugin_exit()
124 if (counts && g_list_next(counts)) { in plugin_exit()
127 it = g_list_sort(counts, sort_cmp); in plugin_exit()
141 fmt_iocount_record(report, &loc->counts); in plugin_exit()
206 DeviceCounts *counts; in vcpu_haddr() local
209 counts = (DeviceCounts *) g_hash_table_lookup(devices, name); in vcpu_haddr()
211 if (!counts) { in vcpu_haddr()
213 counts = new_count(name, base); in vcpu_haddr()
217 if (g_strv_contains((const char * const *)matches, counts->name)) { in vcpu_haddr()
218 hwprofile_match_hit(counts, off); in vcpu_haddr()
219 inc_count(&counts->totals, is_write, cpu_index); in vcpu_haddr()
222 inc_count(&counts->totals, is_write, cpu_index); in vcpu_haddr()
231 IOLocationCounts *io_count = g_hash_table_lookup(counts->detail, in vcpu_haddr()
234 io_count = new_location(counts->detail, off); in vcpu_haddr()
236 inc_count(&io_count->counts, is_write, cpu_index); in vcpu_haddr()