Searched refs:no_store (Results 1 – 8 of 8) sorted by relevance
/freebsd/crypto/openssl/crypto/ |
H A D | core_algorithm.c | 19 int (*pre)(OSSL_PROVIDER *, int operation_id, int no_store, void *data, 21 int (*reserve_store)(int no_store, void *data); 22 void (*fn)(OSSL_PROVIDER *, const OSSL_ALGORITHM *, int no_store, 25 int (*post)(OSSL_PROVIDER *, int operation_id, int no_store, void *data, 43 int cur_operation, int no_store, void *cbdata) in algorithm_do_map() argument 48 if (!data->reserve_store(no_store, data->data)) in algorithm_do_map() 56 } else if (!data->pre(provider, cur_operation, no_store, data->data, in algorithm_do_map() 77 data->fn(provider, thismap, no_store, data->data); in algorithm_do_map() 84 } else if (!data->post(provider, cur_operation, no_store, data->data, in algorithm_do_map() 116 int no_store = 0; /* Assume caching is ok */ in algorithm_do_this() local [all …]
|
H A D | core_fetch.c | 27 static int is_temporary_method_store(int no_store, void *cbdata) in is_temporary_method_store() argument 31 return no_store && !data->force_store; in is_temporary_method_store() 34 static int ossl_method_construct_reserve_store(int no_store, void *cbdata) in ossl_method_construct_reserve_store() argument 38 if (is_temporary_method_store(no_store, data) && data->store == NULL) { in ossl_method_construct_reserve_store() 60 int operation_id, int no_store, in ossl_method_construct_precondition() argument 72 if (!is_temporary_method_store(no_store, cbdata) in ossl_method_construct_precondition() 87 int operation_id, int no_store, in ossl_method_construct_postcondition() argument 98 return is_temporary_method_store(no_store, cbdata) in ossl_method_construct_postcondition() 104 int no_store, void *cbdata) in ossl_method_construct_this() argument
|
/freebsd/crypto/openssl/include/internal/ |
H A D | core.h | 56 int no_store, void *data, int *result), 57 int (*reserve_store)(int no_store, void *data), 60 int no_store, void *data), 63 int no_store, void *data, int *result),
|
/freebsd/crypto/openssl/doc/internal/man3/ |
H A D | ossl_algorithm_do_all.pod | 13 int no_store, void *data), 30 the flag I<no_store> indicating whether the algorithm descriptor may
|
/freebsd/crypto/openssl/doc/man7/ |
H A D | provider.pod | 83 const int *no_store); 90 I<no_store> is a flag back to the OpenSSL libraries which, when
|
H A D | provider-base.pod | 108 const int *no_store); 384 setting I<*no_store> to 0 (core may store a reference) or 1 (core may 717 int *no_store)
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | OSSL_PROVIDER.pod | 143 If it is permissible to cache references to this array then I<*no_store> is set
|
/freebsd/crypto/openssl/include/openssl/ |
H A D | core_dispatch.h | 239 (void *provctx, int operation_id, int *no_store))
|