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