Lines Matching refs:names
183 static void warn_copying(ASN1_OBJECT *excluded, const char *names)
187 if (names != NULL && strstr(names, sn) != NULL)
193 static X509_REQ *x509_to_req(X509 *cert, int ext_copy, const char *names)
207 * If names is not NULL, copy only those extensions listed there.
209 warn_copying(skid, names);
210 warn_copying(akid, names);
1179 static int parse_ext_names(char *names, const char **result)
1184 p = q = names;
1185 len = strlen(names);
1187 while (q - names <= len) {
1213 const char *sn, **names = NULL;
1227 BIO_printf(bio, "Invalid extension names: %s\n", ext_names);
1230 if ((names = OPENSSL_malloc(sizeof(char *) * nn)) == NULL)
1232 parse_ext_names(tmp_ext_names, names);
1244 if (strcmp(sn, names[j]) == 0) {
1264 OPENSSL_free(names);