Home | History | Annotate | Download | only in radius

Lines Matching defs:val

373 	DICT_VALUE     *val;
375 val = dictionary_values;
376 while (val != (DICT_VALUE *) NULL)
378 if (strcasecmp (val->name, valname) == 0)
380 return (val);
382 val = val->next;
397 DICT_VALUE *val;
399 val = dictionary_values;
400 while (val != (DICT_VALUE *) NULL)
402 if (strcmp (val->attrname, attrname) == 0 &&
403 val->value == value)
405 return (val);
407 val = val->next;