Lines Matching refs:I

61 the library context I<ctx>.
64 store subsystem in the scope of the library context I<ctx>.
67 I<ctx> to allow access to the required underlying property data.
69 ossl_method_store_free() frees resources allocated to I<store>.
71 ossl_method_store_add() adds the I<method> constructed from an implementation in
72 the provider I<prov> to the I<store> as an instance of an algorithm indicated by
73 I<nid> and the property definition I<properties>, unless the I<store> already
74 has a method from the same provider with the same I<nid> and I<properties>.
75 If the I<method_up_ref> function is given, it's called to increment the
77 If the I<method_destruct> function is given, it's called when this function
79 the I<store>.
81 ossl_method_store_remove() removes the I<method> identified by I<nid> from the
82 I<store>.
84 ossl_method_store_fetch() queries I<store> for a method identified by I<nid>
85 that matches the property query I<prop_query>.
86 I<*prop> may be a pointer to a provider, which will narrow the search
88 The result, if any, is returned in I<*method>, and its provider in I<*prov>.
90 ossl_method_store_remove_all_provided() removes all methods from I<store>
91 that are provided by I<prov>.
96 ossl_method_store_cache_get() queries the cache associated with the I<store>
97 for a method identified by I<nid> that matches the property query
98 I<prop_query>.
99 Additionally, if I<prov> isn't NULL, it will be used to narrow the search
101 The result, if any, is returned in I<method>.
103 ossl_method_store_cache_set() sets a cache entry identified by I<nid> from the
104 provider I<prov>, with the property query I<prop_query> in the I<store>.
105 Future calls to ossl_method_store_cache_get() will return the specified I<method>.
106 The I<method_up_ref> function is called to increment the
107 reference count of the method and the I<method_destruct> function is called
111 I<store>.
115 The I<prop_query> argument to ossl_method_store_cache_get() and