Lines Matching refs:section
21 "perf config [<file-option>] [options] [section.name[=value] ...]",
39 struct perf_config_section *section = NULL;
54 perf_config_items__for_each_entry(&set->sections, section) {
55 if (!use_system_config && section->from_system_config)
57 fprintf(fp, "[%s]\n", section->name);
59 perf_config_items__for_each_entry(§ion->items, item) {
74 struct perf_config_section *section;
80 perf_config_items__for_each_entry(&set->sections, section) {
81 if (!strstarts(var, section->name))
84 perf_config_items__for_each_entry(§ion->items, item) {
85 const char *name = var + strlen(section->name) + 1;
104 struct perf_config_section *section;
110 perf_config_set__for_each_entry(set, section, item) {
114 printf("%s.%s=%s\n", section->name,
126 * Since "var" actually contains the section name and the real
130 pr_err("The config variable does not contain a section name: %s\n", arg);