Lines Matching refs:val
26 const char *val; /* contained in the same alloc as key */
172 unsigned long val; \
173 int err = kstrtoul(buf, 0, &val); \
176 codec->field = val; \
276 "%s = %s\n", hint->key, hint->val);
311 char *key, *val;
323 /* extract key and val */
324 val = strchr(key, '=');
325 if (!val) {
329 *val++ = 0;
330 val = skip_spaces(val);
332 remove_trail_spaces(val);
339 hint->val = val;
349 hint->val = val;
424 return hint ? hint->val : NULL;
476 unsigned long val;
483 else if (kstrtoul(p, 0, &val))
486 *valp = val;
598 unsigned long val; \
599 if (!kstrtoul(buf, 0, &val)) \
600 (*codecp)->core.name = val; \
794 kfree(hint->key); /* we don't need to free hint->val */