• Home
  • Raw
  • Download

Lines Matching refs:e

67 void ENGINE_unregister_pkey_asn1_meths(ENGINE *e)  in ENGINE_unregister_pkey_asn1_meths()  argument
69 engine_table_unregister(&pkey_asn1_meth_table, e); in ENGINE_unregister_pkey_asn1_meths()
77 int ENGINE_register_pkey_asn1_meths(ENGINE *e) in ENGINE_register_pkey_asn1_meths() argument
79 if(e->pkey_asn1_meths) in ENGINE_register_pkey_asn1_meths()
82 int num_nids = e->pkey_asn1_meths(e, NULL, &nids, 0); in ENGINE_register_pkey_asn1_meths()
85 engine_unregister_all_pkey_asn1_meths, e, nids, in ENGINE_register_pkey_asn1_meths()
93 ENGINE *e; in ENGINE_register_all_pkey_asn1_meths() local
95 for(e=ENGINE_get_first() ; e ; e=ENGINE_get_next(e)) in ENGINE_register_all_pkey_asn1_meths()
96 ENGINE_register_pkey_asn1_meths(e); in ENGINE_register_all_pkey_asn1_meths()
99 int ENGINE_set_default_pkey_asn1_meths(ENGINE *e) in ENGINE_set_default_pkey_asn1_meths() argument
101 if(e->pkey_asn1_meths) in ENGINE_set_default_pkey_asn1_meths()
104 int num_nids = e->pkey_asn1_meths(e, NULL, &nids, 0); in ENGINE_set_default_pkey_asn1_meths()
107 engine_unregister_all_pkey_asn1_meths, e, nids, in ENGINE_set_default_pkey_asn1_meths()
122 const EVP_PKEY_ASN1_METHOD *ENGINE_get_pkey_asn1_meth(ENGINE *e, int nid) in ENGINE_get_pkey_asn1_meth() argument
125 ENGINE_PKEY_ASN1_METHS_PTR fn = ENGINE_get_pkey_asn1_meths(e); in ENGINE_get_pkey_asn1_meth()
126 if(!fn || !fn(e, &ret, NULL, nid)) in ENGINE_get_pkey_asn1_meth()
136 ENGINE_PKEY_ASN1_METHS_PTR ENGINE_get_pkey_asn1_meths(const ENGINE *e) in ENGINE_get_pkey_asn1_meths() argument
138 return e->pkey_asn1_meths; in ENGINE_get_pkey_asn1_meths()
142 int ENGINE_set_pkey_asn1_meths(ENGINE *e, ENGINE_PKEY_ASN1_METHS_PTR f) in ENGINE_set_pkey_asn1_meths() argument
144 e->pkey_asn1_meths = f; in ENGINE_set_pkey_asn1_meths()
152 void engine_pkey_asn1_meths_free(ENGINE *e) in engine_pkey_asn1_meths_free() argument
156 if (e->pkey_asn1_meths) in engine_pkey_asn1_meths_free()
160 npknids = e->pkey_asn1_meths(e, NULL, &pknids, 0); in engine_pkey_asn1_meths_free()
163 if (e->pkey_asn1_meths(e, &pkm, NULL, pknids[i])) in engine_pkey_asn1_meths_free()
177 const EVP_PKEY_ASN1_METHOD *ENGINE_get_pkey_asn1_meth_str(ENGINE *e, in ENGINE_get_pkey_asn1_meth_str() argument
183 if (!e->pkey_asn1_meths) in ENGINE_get_pkey_asn1_meth_str()
187 nidcount = e->pkey_asn1_meths(e, NULL, &nids, 0); in ENGINE_get_pkey_asn1_meth_str()
190 e->pkey_asn1_meths(e, &ameth, NULL, nids[i]); in ENGINE_get_pkey_asn1_meth_str()
200 ENGINE *e; member
214 ENGINE *e = sk_ENGINE_value(sk, i); in look_str_cb() local
216 e->pkey_asn1_meths(e, &ameth, NULL, nid); in look_str_cb()
220 lk->e = e; in look_str_cb()
231 fstr.e = NULL; in ENGINE_pkey_asn1_find_str()
238 if (fstr.e) in ENGINE_pkey_asn1_find_str()
240 fstr.e->struct_ref++; in ENGINE_pkey_asn1_find_str()
241 engine_ref_debug(fstr.e, 0, 1) in ENGINE_pkey_asn1_find_str()
243 *pe = fstr.e; in ENGINE_pkey_asn1_find_str()