Lines Matching full:tables
14 # List of event tables generated from "/sys" directories.
525 """C struct mapping table array for tables from /sys directories."""
606 for (const struct pmu_events_map *tables = &pmu_events_map[0];
607 tables->arch;
608 tables++) {
609 if (!strcmp(tables->arch, arch) && !strcmp_cpuid_str(tables->cpuid, cpuid))
610 return &tables->table;
617 for (const struct pmu_events_map *tables = &pmu_events_map[0];
618 tables->arch;
619 tables++) {
620 int ret = pmu_events_table_for_each_event(&tables->table, fn, data);
630 for (const struct pmu_sys_events *tables = &pmu_sys_event_tables[0];
631 tables->name;
632 tables++) {
633 if (!strcmp(tables->name, name))
634 return &tables->table;
641 for (const struct pmu_sys_events *tables = &pmu_sys_event_tables[0];
642 tables->name;
643 tables++) {
644 int ret = pmu_events_table_for_each_event(&tables->table, fn, data);