| /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 | 28 static int is_temporary_method_store(int no_store, void *cbdata) in is_temporary_method_store() argument 32 return no_store && !data->force_store; in is_temporary_method_store() 35 static int ossl_method_construct_reserve_store(int no_store, void *cbdata) in ossl_method_construct_reserve_store() argument 39 if (is_temporary_method_store(no_store, data) && data->store == NULL) { in ossl_method_construct_reserve_store() 61 int operation_id, int no_store, in ossl_method_construct_precondition() argument 73 if (!is_temporary_method_store(no_store, cbdata) in ossl_method_construct_precondition() 88 int operation_id, int no_store, in ossl_method_construct_postcondition() argument 99 return is_temporary_method_store(no_store, cbdata) in ossl_method_construct_postcondition() 105 int no_store, void *cbdata) in ossl_method_construct_this() argument 116 (void *)data->store, no_store); in ossl_method_construct_this() [all …]
|
| /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/krb5/src/clients/kvno/ |
| H A D | kvno.c | 56 int canon, int no_store, int unknown, char *for_user, 75 int impersonate = 0, cached_only = 0, no_store = 0; in main() local 78 { "no-store", 0, &no_store, 1 }, in main() 175 sname, cached_only, canon, no_store, unknown, for_user, in main() 455 int no_store, int unknown, char *for_user, int for_user_enterprise, in do_v5_kvno() argument 474 if (no_store || out_ccname != NULL) in do_v5_kvno()
|
| /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 | 118 const int *no_store); 444 setting I<*no_store> to 0 (core may store a reference) or 1 (core may 919 int *no_store)
|
| /freebsd/crypto/openssl/doc/man3/ |
| H A D | OSSL_PROVIDER.pod | 197 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 | 243 (void *provctx, int operation_id, int *no_store))
|