Home | History | Annotate | Download | only in pppd

Lines Matching refs:valp

1353 number_option(str, valp, base)
1355 u_int32_t *valp;
1360 *valp = strtoul(str, &ptr, base);
1371 * int_option - like number_option, but valp is int *,
1372 * the base is assumed to be 0, and *valp is not changed
1376 int_option(str, valp)
1378 int *valp;
1384 *valp = (int) v;