Searched refs:tmp_store (Results 1 – 4 of 4) sorted by relevance
| /freebsd/crypto/openssl/crypto/evp/ |
| H A D | evp_fetch.c | 34 OSSL_METHOD_STORE *tmp_store; /* For get_tmp_evp_method_store() */ member 51 if (methdata->tmp_store == NULL) { in get_tmp_evp_method_store() 52 methdata->tmp_store = ossl_method_store_new(methdata->libctx); in get_tmp_evp_method_store() 53 OSSL_TRACE1(QUERY, "Allocating a new tmp_store %p\n", (void *)methdata->tmp_store); in get_tmp_evp_method_store() 55 OSSL_TRACE1(QUERY, "Using the existing tmp_store %p\n", (void *)methdata->tmp_store); in get_tmp_evp_method_store() 57 return methdata->tmp_store; in get_tmp_evp_method_store() 403 methdata.tmp_store = NULL; in evp_generic_fetch() 407 dealloc_tmp_evp_method_store(methdata.tmp_store); in evp_generic_fetch() 429 methdata.tmp_store = NULL; in evp_generic_fetch_from_prov() 433 dealloc_tmp_evp_method_store(methdata.tmp_store); in evp_generic_fetch_from_prov() [all …]
|
| /freebsd/crypto/openssl/crypto/store/ |
| H A D | store_meth.c | 81 OSSL_METHOD_STORE *tmp_store; /* For get_tmp_loader_store() */ member 96 if (methdata->tmp_store == NULL) in get_tmp_loader_store() 97 methdata->tmp_store = ossl_method_store_new(methdata->libctx); in get_tmp_loader_store() 98 return methdata->tmp_store; in get_tmp_loader_store() 381 methdata.tmp_store = NULL; in OSSL_STORE_LOADER_fetch() 383 dealloc_tmp_loader_store(methdata.tmp_store); in OSSL_STORE_LOADER_fetch() 477 methdata.tmp_store = NULL; in OSSL_STORE_LOADER_do_all_provided() 482 if (methdata.tmp_store != NULL) in OSSL_STORE_LOADER_do_all_provided() 483 ossl_method_store_do_all(methdata.tmp_store, &do_one, &data); in OSSL_STORE_LOADER_do_all_provided() 485 dealloc_tmp_loader_store(methdata.tmp_store); in OSSL_STORE_LOADER_do_all_provided()
|
| /freebsd/crypto/openssl/crypto/encode_decode/ |
| H A D | encoder_meth.c | 84 OSSL_METHOD_STORE *tmp_store; /* For get_tmp_encoder_store() */ member 99 if (methdata->tmp_store == NULL) in get_tmp_encoder_store() 100 methdata->tmp_store = ossl_method_store_new(methdata->libctx); in get_tmp_encoder_store() 101 return methdata->tmp_store; in get_tmp_encoder_store() 436 methdata.tmp_store = NULL; in OSSL_ENCODER_fetch() 438 dealloc_tmp_encoder_store(methdata.tmp_store); in OSSL_ENCODER_fetch() 548 methdata.tmp_store = NULL; in OSSL_ENCODER_do_all_provided() 553 if (methdata.tmp_store != NULL) in OSSL_ENCODER_do_all_provided() 554 ossl_method_store_do_all(methdata.tmp_store, &do_one, &data); in OSSL_ENCODER_do_all_provided() 556 dealloc_tmp_encoder_store(methdata.tmp_store); in OSSL_ENCODER_do_all_provided()
|
| H A D | decoder_meth.c | 84 OSSL_METHOD_STORE *tmp_store; /* For get_tmp_decoder_store() */ member 99 if (methdata->tmp_store == NULL) in get_tmp_decoder_store() 100 methdata->tmp_store = ossl_method_store_new(methdata->libctx); in get_tmp_decoder_store() 101 return methdata->tmp_store; in get_tmp_decoder_store() 431 methdata.tmp_store = NULL; in OSSL_DECODER_fetch() 433 dealloc_tmp_decoder_store(methdata.tmp_store); in OSSL_DECODER_fetch() 561 methdata.tmp_store = NULL; in OSSL_DECODER_do_all_provided() 566 if (methdata.tmp_store != NULL) in OSSL_DECODER_do_all_provided() 567 ossl_method_store_do_all(methdata.tmp_store, &do_one, &data); in OSSL_DECODER_do_all_provided() 569 dealloc_tmp_decoder_store(methdata.tmp_store); in OSSL_DECODER_do_all_provided()
|