Lines Matching refs:val
111 char *val;
125 val = strchr(key, '=');
126 if (val == NULL) {
130 val[0] = '\0';
131 val++;
134 while (isspace(val[0]))
135 val++;
146 len = strlen(val);
149 while (isspace(val[len-1]))
151 val[len] = '\0';
157 if (val[0] == '"' || val[0] == '\'') {
158 if (val[len-1] != val[0]) {
162 val[len-1] = '\0';
163 val++;
169 prio = util_log_priority(val);
171 log_debug("/etc/udev/udev.conf:%u: invalid log level '%s', ignoring.", line_nr, val);