Lines Matching defs:value
45 char *property, *value;
49 HASHMAP_FOREACH_KEY(value, property, sysctl_options, i) {
52 k = sysctl_write(property, value);
55 "Couldn't write '%s' to '%s', ignoring: %m", value, property);
81 char l[LINE_MAX], *p, *value, *new_value, *property, *existing;
99 value = strchr(p, '=');
100 if (!value) {
101 log_error("Line is not an assignment in file '%s': %s", path, value);
108 *value = 0;
109 value++;
112 value = strstrip(value);
130 if (streq(value, existing))
142 new_value = strdup(value);