Lines Matching defs:name
21 "perf config [<file-option>] [options] [section.name[=value] ...]",
57 fprintf(fp, "[%s]\n", section->name);
64 item->name, item->value);
81 if (!strstarts(var, section->name))
85 const char *name = var + strlen(section->name) + 1;
87 if (strcmp(name, item->name) == 0) {
114 printf("%s.%s=%s\n", section->name,
115 item->name, value);
126 * Since "var" actually contains the section name and the real
127 * config variable name separated by a dot, we have to know where the dot is.
130 pr_err("The config variable does not contain a section name: %s\n", arg);
134 pr_err("The config variable does not contain a variable name: %s\n", arg);