Lines Matching refs:NULL

48     DH *ret = NULL;  in DSA_dup_DH()
49 BIGNUM *pub_key = NULL, *priv_key = NULL; in DSA_dup_DH()
51 if (r == NULL) in DSA_dup_DH()
54 if (ret == NULL) in DSA_dup_DH()
60 if (r->pub_key != NULL) { in DSA_dup_DH()
62 if (pub_key == NULL) in DSA_dup_DH()
64 if (r->priv_key != NULL) { in DSA_dup_DH()
66 if (priv_key == NULL) in DSA_dup_DH()
71 } else if (r->priv_key != NULL) { in DSA_dup_DH()
82 return NULL; in DSA_dup_DH()
118 dsa->engine = NULL; in DSA_set_method()
137 if (ret == NULL) in dsa_new_intern()
138 return NULL; in dsa_new_intern()
141 if (ret->lock == NULL) { in dsa_new_intern()
144 return NULL; in dsa_new_intern()
150 return NULL; in dsa_new_intern()
167 if (ret->meth == NULL) { in dsa_new_intern()
184 if ((ret->meth->init != NULL) && !ret->meth->init(ret)) { in dsa_new_intern()
193 return NULL; in dsa_new_intern()
198 return dsa_new_intern(engine, NULL); in DSA_new_method()
203 return dsa_new_intern(NULL, libctx); in ossl_dsa_new()
209 return dsa_new_intern(NULL, NULL); in DSA_new()
217 if (r == NULL) in DSA_free()
226 if (r->meth != NULL && r->meth->finish != NULL) in DSA_free()
273 if ((d->params.p == NULL && p == NULL) in DSA_set0_pqg()
274 || (d->params.q == NULL && q == NULL) in DSA_set0_pqg()
275 || (d->params.g == NULL && g == NULL)) in DSA_set0_pqg()
312 if (pub_key != NULL) in DSA_get0_key()
314 if (priv_key != NULL) in DSA_get0_key()
320 if (pub_key != NULL) { in DSA_set0_key()
324 if (priv_key != NULL) { in DSA_set0_key()
335 if (d->params.p != NULL && d->params.q != NULL) in DSA_security_bits()
343 if (dsa->params.p != NULL) in DSA_bits()