Lines Matching refs:def
60 static int add_attribute_object(X509_REQ *req, char *text, const char *def,
63 static int add_DN_object(X509_NAME *n, char *text, const char *def,
66 static int build_data(char *text, const char *def, char *value,
1139 const char *def; in prompt_info() local
1194 if ((def = app_conf_try_string(req_conf, dn_sect, buf)) == NULL) in prompt_info()
1195 def = ""; in prompt_info()
1212 if (!add_DN_object(subj, v->value, def, value, nid, in prompt_info()
1244 def = app_conf_try_string(req_conf, attr_sect, buf); in prompt_info()
1245 if (def == NULL) in prompt_info()
1246 def = ""; in prompt_info()
1263 v->value, def, value, nid, n_min, in prompt_info()
1344 static int add_DN_object(X509_NAME *n, char *text, const char *def, in add_DN_object() argument
1351 ret = build_data(text, def, value, n_min, n_max, buf, sizeof(buf), in add_DN_object()
1364 static int add_attribute_object(X509_REQ *req, char *text, const char *def, in add_attribute_object() argument
1371 ret = build_data(text, def, value, n_min, n_max, buf, sizeof(buf), in add_attribute_object()
1386 static int build_data(char *text, const char *def, char *value, in build_data() argument
1393 BIO_printf(bio_err, "%s [%s]:", text, def); in build_data()
1413 if ((def == NULL) || (def[0] == '\0')) in build_data()
1415 if (!join(buf, buf_size, def, "\n", desc2)) in build_data()