Lines Matching refs:rch
580 CMS_RevocationInfoChoice *rch; in CMS_add0_RevocationInfoChoice() local
589 rch = M_ASN1_new_of(CMS_RevocationInfoChoice); in CMS_add0_RevocationInfoChoice()
590 if (rch == NULL) in CMS_add0_RevocationInfoChoice()
592 if (!sk_CMS_RevocationInfoChoice_push(*pcrls, rch)) { in CMS_add0_RevocationInfoChoice()
593 M_ASN1_free_of(rch, CMS_RevocationInfoChoice); in CMS_add0_RevocationInfoChoice()
596 return rch; in CMS_add0_RevocationInfoChoice()
601 CMS_RevocationInfoChoice *rch = CMS_add0_RevocationInfoChoice(cms); in CMS_add0_crl() local
603 if (rch == NULL) in CMS_add0_crl()
605 rch->type = CMS_REVCHOICE_CRL; in CMS_add0_crl()
606 rch->d.crl = crl; in CMS_add0_crl()
653 CMS_RevocationInfoChoice *rch; in STACK_OF() local
666 rch = sk_CMS_RevocationInfoChoice_value(*pcrls, i); in STACK_OF()
667 if (rch->type == 0) { in STACK_OF()
668 if (!sk_X509_CRL_push(crls, rch->d.crl) in STACK_OF()
669 || !X509_CRL_up_ref(rch->d.crl)) { in STACK_OF()