HomeSort by: relevance | last modified time | path
    Searched defs:rand_nonce_lock (Results 1 - 3 of 3) sorted by relevancy

  /src/crypto/external/bsd/openssl/dist/providers/implementations/rands/
drbg.c 271 CRYPTO_RWLOCK *rand_nonce_lock; member in struct:prov_drbg_nonce_global_st
277 * which needs to get the rand_nonce_lock out of the OSSL_LIB_CTX...but since
278 * drbg_ossl_ctx_new() hasn't finished running yet we need the rand_nonce_lock
289 dngbl->rand_nonce_lock = CRYPTO_THREAD_lock_new();
290 if (dngbl->rand_nonce_lock == NULL) {
305 CRYPTO_THREAD_lock_free(dngbl->rand_nonce_lock);
352 dngbl->rand_nonce_lock);
  /src/crypto/external/apache2/openssl/dist/providers/implementations/rands/
drbg.c 260 CRYPTO_RWLOCK *rand_nonce_lock; member in struct:prov_drbg_nonce_global_st
266 * which needs to get the rand_nonce_lock out of the OSSL_LIB_CTX...but since
267 * drbg_ossl_ctx_new() hasn't finished running yet we need the rand_nonce_lock
278 dngbl->rand_nonce_lock = CRYPTO_THREAD_lock_new();
279 if (dngbl->rand_nonce_lock == NULL) {
294 CRYPTO_THREAD_lock_free(dngbl->rand_nonce_lock);
334 dngbl->rand_nonce_lock))
  /src/crypto/external/bsd/openssl.old/dist/crypto/rand/
rand_lib.c 29 static CRYPTO_RWLOCK *rand_nonce_lock; variable
255 CRYPTO_atomic_add(&rand_nonce_count, 1, &data.count, rand_nonce_lock);
320 rand_nonce_lock = CRYPTO_THREAD_lock_new();
321 if (rand_nonce_lock == NULL)
331 CRYPTO_THREAD_lock_free(rand_nonce_lock);
332 rand_nonce_lock = NULL;
361 CRYPTO_THREAD_lock_free(rand_nonce_lock);
362 rand_nonce_lock = NULL;

Completed in 25 milliseconds