Lines Matching full:section
22 "perf config [<file-option>] [options] [section.name[=value] ...]",
40 struct perf_config_section *section = NULL; in set_config() local
55 perf_config_items__for_each_entry(&set->sections, section) { in set_config()
56 if (!use_system_config && section->from_system_config) in set_config()
58 fprintf(fp, "[%s]\n", section->name); in set_config()
60 perf_config_items__for_each_entry(§ion->items, item) { in set_config()
75 struct perf_config_section *section; in show_spec_config() local
81 perf_config_items__for_each_entry(&set->sections, section) { in show_spec_config()
82 if (!strstarts(var, section->name)) in show_spec_config()
85 perf_config_items__for_each_entry(§ion->items, item) { in show_spec_config()
86 const char *name = var + strlen(section->name) + 1; in show_spec_config()
105 struct perf_config_section *section; in show_config() local
111 perf_config_set__for_each_entry(set, section, item) { in show_config()
115 printf("%s.%s=%s\n", section->name, in show_config()
127 * Since "var" actually contains the section name and the real in parse_config_arg()
131 pr_err("The config variable does not contain a section name: %s\n", arg); in parse_config_arg()