Lines Matching full:goto
276 if ((i=i2d(data,NULL)) <= 0) goto err;
278 goto err;
279 if (i2d(data, &p) <= 0) goto err;
287 IS_SEQUENCE))<=0) goto err;
289 goto err;
293 IS_SEQUENCE)<=0) goto err;
298 goto err;
300 if (!s && !(s = ASN1_STRING_new())) goto err;
301 if (!(ASN1_STRING_set(s, b, i))) goto err;
331 goto err;
340 goto err;
428 if (!(cid = OCSP_CRLID_new())) goto err;
431 if (!(cid->crlUrl = ASN1_IA5STRING_new())) goto err;
432 if (!(ASN1_STRING_set(cid->crlUrl, url, -1))) goto err;
436 if (!(cid->crlNum = ASN1_INTEGER_new())) goto err;
437 if (!(ASN1_INTEGER_set(cid->crlNum, *n))) goto err;
441 if (!(cid->crlTime = ASN1_GENERALIZEDTIME_new())) goto err;
443 goto err;
445 if (!(x = X509_EXTENSION_new())) goto err;
446 if (!(x->object = OBJ_nid2obj(NID_id_pkix_OCSP_CrlID))) goto err;
449 goto err;
466 if (!(sk = sk_ASN1_OBJECT_new_null())) goto err;
473 if (!(x = X509_EXTENSION_new())) goto err;
475 goto err;
478 goto err;
493 if (!(gt = ASN1_GENERALIZEDTIME_new())) goto err;
494 if (!(ASN1_GENERALIZEDTIME_set_string(gt, tim))) goto err;
495 if (!(x = X509_EXTENSION_new())) goto err;
496 if (!(x->object=OBJ_nid2obj(NID_id_pkix_OCSP_archiveCutoff)))goto err;
498 i2d_ASN1_GENERALIZEDTIME,gt,NULL))) goto err;
518 if (!(sloc = OCSP_SERVICELOC_new())) goto err;
519 if (!(sloc->issuer = X509_NAME_dup(issuer))) goto err;
520 if (urls && *urls && !(sloc->locator = sk_ACCESS_DESCRIPTION_new_null())) goto err;
523 if (!(ad = ACCESS_DESCRIPTION_new())) goto err;
524 if (!(ad->method=OBJ_nid2obj(NID_ad_OCSP))) goto err;
525 if (!(ad->location = GENERAL_NAME_new())) goto err;
526 if (!(ia5 = ASN1_IA5STRING_new())) goto err;
527 if (!ASN1_STRING_set((ASN1_STRING*)ia5, *urls, -1)) goto err;
530 if (!sk_ACCESS_DESCRIPTION_push(sloc->locator, ad)) goto err;
533 if (!(x = X509_EXTENSION_new())) goto err;
535 goto err;
537 i2d_OCSP_SERVICELOC,sloc,NULL))) goto err;