Lines Matching refs:namelist
465 char **namelist = arg; in collect_name() local
470 if (*namelist != NULL) in collect_name()
471 space += strlen(*namelist) + 2 /* for comma and space */; in collect_name()
474 new_namelist = OPENSSL_realloc(*namelist, space); in collect_name()
477 if (*namelist != NULL) { in collect_name()
483 *namelist = new_namelist; in collect_name()
507 char *namelist = NULL; in check_unprotected_PKCS8_DER() local
511 EVP_PKEY_type_names_do_all(pkey, collect_name, &namelist); in check_unprotected_PKCS8_DER()
512 if (namelist != NULL) in check_unprotected_PKCS8_DER()
513 TEST_note("%s isn't any of %s", type, namelist); in check_unprotected_PKCS8_DER()
514 OPENSSL_free(namelist); in check_unprotected_PKCS8_DER()