Lines Matching refs:crls
819 int load_crls(const char *uri, STACK_OF(X509_CRL) **crls, in load_crls() argument
822 int was_NULL = *crls == NULL; in load_crls()
825 NULL, NULL, NULL, crls); in load_crls()
828 sk_X509_CRL_pop_free(*crls, X509_CRL_free); in load_crls()
829 *crls = NULL; in load_crls()
2417 STACK_OF(X509_CRL) *crls = NULL; in STACK_OF()
2421 crls = sk_X509_CRL_new_null(); in STACK_OF()
2422 if (!crls) in STACK_OF()
2429 sk_X509_CRL_free(crls); in STACK_OF()
2432 sk_X509_CRL_push(crls, crl); in STACK_OF()
2438 sk_X509_CRL_push(crls, crl); in STACK_OF()
2439 return crls; in STACK_OF()