Lines Matching +full:int +full:- +full:property
11 - implementation method store and query
15 #include "internal/property.h"
21 int ossl_method_store_init(OSSL_LIB_CTX *ctx);
23 int ossl_method_store_add(OSSL_METHOD_STORE *store, const OSSL_PROVIDER *prov,
24 int nid, const char *properties, void *method,
25 int (*method_up_ref)(void *),
27 int ossl_method_store_remove(OSSL_METHOD_STORE *store,
28 int nid, const void *method);
29 int ossl_method_store_fetch(OSSL_METHOD_STORE *store,
30 int nid, const char *properties,
32 int ossl_method_store_remove_all_provided(OSSL_METHOD_STORE *store,
35 int ossl_method_store_cache_get(OSSL_METHOD_STORE *store, OSSL_PROVIDER *prov,
36 int nid, const char *prop_query, void **method);
37 int ossl_method_store_cache_set(OSSL_METHOD_STORE *store, OSSL_PROVIDER *prov,
38 int nid, const char *prop_query, void *method,
39 int (*method_up_ref)(void *),
67 I<ctx> to allow access to the required underlying property data.
73 I<nid> and the property definition I<properties>, unless the I<store> already
85 that matches the property query I<prop_query>.
97 for a method identified by I<nid> that matches the property query
104 provider I<prov>, with the property query I<prop_query> in the I<store>.
117 empty property definition or query.
136 Copyright 2019-2022 The OpenSSL Project Authors. All Rights Reserved.