Lines Matching defs:minval
205 { "minval", 1, BOND_VALFLAG_MIN | BOND_VALFLAG_DEFAULT},
217 { "minval", 1, BOND_VALFLAG_MIN},
223 { "minval", 0, BOND_VALFLAG_MIN | BOND_VALFLAG_DEFAULT},
229 { "minval", 1, BOND_VALFLAG_MIN},
546 /* If maxval is missing then there's no range to check. In case minval is
551 const struct bond_opt_value *minval, *maxval;
553 minval = bond_opt_get_flags(opt, BOND_VALFLAG_MIN);
555 if (!maxval || (minval && val < minval->value) || val > maxval->value)
676 const struct bond_opt_value *minval, *maxval;
695 minval = bond_opt_get_flags(opt, BOND_VALFLAG_MIN);
700 opt->name, minval ? minval->value : 0, maxval->value);