Lines Matching defs:value
18 static int do_tcreate(const char *value, const char *name);
34 if (!do_tcreate(mval->value, mval->name)) {
53 * Create an table entry based on a name value pair. format is oid_name =
57 static int do_tcreate(const char *value, const char *name)
70 lst = X509V3_parse_list(value);
76 tbl_min = strtoul(cnf->value, &eptr, 0);
80 tbl_max = strtoul(cnf->value, &eptr, 0);
84 if (!ASN1_str2mask(cnf->value, &tbl_mask) || !tbl_mask)
87 if (strcmp(cnf->value, "nomask") == 0)
89 else if (strcmp(cnf->value, "none") == 0)
101 "field=%s, value=%s", cnf->name, cnf->value);
104 "name=%s, value=%s", name, value);