Lines Matching refs:NULL

22        | OPENSSL_INIT_ADD_ALL_CIPHERS | OPENSSL_INIT_ADD_ALL_DIGESTS, NULL);  in FuzzerInitialize()
37 unsigned char *der = NULL; in FuzzerTestOneInput()
38 BIO *bio = NULL; in FuzzerTestOneInput()
39 X509 *x509_1 = NULL, *x509_2 = NULL; in FuzzerTestOneInput()
40 X509_STORE *store = NULL; in FuzzerTestOneInput()
41 X509_VERIFY_PARAM *param = NULL; in FuzzerTestOneInput()
42 X509_STORE_CTX *ctx = NULL; in FuzzerTestOneInput()
43 X509_CRL *crl = NULL; in FuzzerTestOneInput()
44 STACK_OF(X509_CRL) *crls = NULL; in FuzzerTestOneInput()
45 STACK_OF(X509) *certs = NULL; in FuzzerTestOneInput()
46 OCSP_RESPONSE *resp = NULL; in FuzzerTestOneInput()
47 OCSP_BASICRESP *bs = NULL; in FuzzerTestOneInput()
48 OCSP_CERTID *id = NULL; in FuzzerTestOneInput()
50 x509_1 = d2i_X509(NULL, &p, len); in FuzzerTestOneInput()
51 if (x509_1 == NULL) in FuzzerTestOneInput()
55 if (bio == NULL) in FuzzerTestOneInput()
68 x509_2 = d2i_X509(NULL, &p, len); in FuzzerTestOneInput()
69 if (x509_2 == NULL) in FuzzerTestOneInput()
73 crl = d2i_X509_CRL(NULL, &p, len); in FuzzerTestOneInput()
74 if (crl == NULL) in FuzzerTestOneInput()
78 resp = d2i_OCSP_RESPONSE(NULL, &p, len); in FuzzerTestOneInput()
94 if (ctx == NULL) in FuzzerTestOneInput()
97 X509_STORE_CTX_init(ctx, store, x509_1, NULL); in FuzzerTestOneInput()
99 if (crl != NULL) { in FuzzerTestOneInput()
101 if (crls == NULL) in FuzzerTestOneInput()
110 if (resp != NULL) in FuzzerTestOneInput()
113 if (bs != NULL) { in FuzzerTestOneInput()
118 if (certs == NULL) in FuzzerTestOneInput()
126 id = OCSP_cert_to_id(NULL, x509_1, x509_2); in FuzzerTestOneInput()
127 if (id == NULL) in FuzzerTestOneInput()