Lines Matching refs:meth
122 ret->meth=method; in STORE_new_method()
125 if (ret->meth->init && !ret->meth->init(ret)) in STORE_new_method()
137 const STORE_METHOD *meth = 0; in STORE_new_engine() local
158 meth = ENGINE_get_STORE(e); in STORE_new_engine()
159 if(!meth) in STORE_new_engine()
169 ret = STORE_new_method(meth); in STORE_new_engine()
185 if (store->meth->clean) in STORE_free()
186 store->meth->clean(store); in STORE_free()
198 if (store->meth->ctrl) in STORE_ctrl()
199 return store->meth->ctrl(store, cmd, i, p, f); in STORE_ctrl()
224 return store->meth; in STORE_get_method()
227 const STORE_METHOD *STORE_set_method(STORE *store, const STORE_METHOD *meth) in STORE_set_method() argument
229 store->meth=meth; in STORE_set_method()
230 return store->meth; in STORE_set_method()
239 if ((s) == NULL || (s)->meth == NULL) \
244 if ((s)->meth->fnname == NULL) \
263 object = s->meth->get_object(s, STORE_OBJECT_TYPE_X509_CERTIFICATE, in STORE_get_certificate()
303 i = s->meth->store_object(s, STORE_OBJECT_TYPE_X509_CERTIFICATE, in STORE_store_certificate()
324 if (!s->meth->modify_object(s, STORE_OBJECT_TYPE_X509_CERTIFICATE, in STORE_modify_certificate()
341 if (!s->meth->revoke_object(s, STORE_OBJECT_TYPE_X509_CERTIFICATE, in STORE_revoke_certificate()
357 if (!s->meth->delete_object(s, STORE_OBJECT_TYPE_X509_CERTIFICATE, in STORE_delete_certificate()
375 handle = s->meth->list_object_start(s, in STORE_list_certificate_start()
394 object = s->meth->list_object_next(s, handle); in STORE_list_certificate_next()
415 if (!s->meth->list_object_end(s, handle)) in STORE_list_certificate_end()
429 if (!s->meth->list_object_endp(s, handle)) in STORE_list_certificate_endp()
447 object = s->meth->generate_object(s, STORE_OBJECT_TYPE_PRIVATE_KEY, in STORE_generate_key()
473 object = s->meth->get_object(s, STORE_OBJECT_TYPE_PRIVATE_KEY, in STORE_get_private_key()
520 i = s->meth->store_object(s, STORE_OBJECT_TYPE_PRIVATE_KEY, object, in STORE_store_private_key()
541 if (!s->meth->modify_object(s, STORE_OBJECT_TYPE_PRIVATE_KEY, in STORE_modify_private_key()
560 i = s->meth->revoke_object(s, STORE_OBJECT_TYPE_PRIVATE_KEY, in STORE_revoke_private_key()
578 if (!s->meth->delete_object(s, STORE_OBJECT_TYPE_PRIVATE_KEY, in STORE_delete_private_key()
596 handle = s->meth->list_object_start(s, STORE_OBJECT_TYPE_PRIVATE_KEY, in STORE_list_private_key_start()
615 object = s->meth->list_object_next(s, handle); in STORE_list_private_key_next()
636 if (!s->meth->list_object_end(s, handle)) in STORE_list_private_key_end()
650 if (!s->meth->list_object_endp(s, handle)) in STORE_list_private_key_endp()
668 object = s->meth->get_object(s, STORE_OBJECT_TYPE_PUBLIC_KEY, in STORE_get_public_key()
715 i = s->meth->store_object(s, STORE_OBJECT_TYPE_PUBLIC_KEY, object, in STORE_store_public_key()
736 if (!s->meth->modify_object(s, STORE_OBJECT_TYPE_PUBLIC_KEY, in STORE_modify_public_key()
755 i = s->meth->revoke_object(s, STORE_OBJECT_TYPE_PUBLIC_KEY, in STORE_revoke_public_key()
773 if (!s->meth->delete_object(s, STORE_OBJECT_TYPE_PUBLIC_KEY, in STORE_delete_public_key()
791 handle = s->meth->list_object_start(s, STORE_OBJECT_TYPE_PUBLIC_KEY, in STORE_list_public_key_start()
810 object = s->meth->list_object_next(s, handle); in STORE_list_public_key_next()
831 if (!s->meth->list_object_end(s, handle)) in STORE_list_public_key_end()
845 if (!s->meth->list_object_endp(s, handle)) in STORE_list_public_key_endp()
863 object = s->meth->generate_object(s, STORE_OBJECT_TYPE_X509_CRL, in STORE_generate_crl()
889 object = s->meth->get_object(s, STORE_OBJECT_TYPE_X509_CRL, in STORE_get_crl()
929 i = s->meth->store_object(s, STORE_OBJECT_TYPE_X509_CRL, object, in STORE_store_crl()
950 if (!s->meth->modify_object(s, STORE_OBJECT_TYPE_X509_CRL, in STORE_modify_crl()
967 if (!s->meth->delete_object(s, STORE_OBJECT_TYPE_X509_CRL, in STORE_delete_crl()
985 handle = s->meth->list_object_start(s, STORE_OBJECT_TYPE_X509_CRL, in STORE_list_crl_start()
1004 object = s->meth->list_object_next(s, handle); in STORE_list_crl_next()
1025 if (!s->meth->list_object_end(s, handle)) in STORE_list_crl_end()
1039 if (!s->meth->list_object_endp(s, handle)) in STORE_list_crl_endp()
1067 i = s->meth->store_object(s, STORE_OBJECT_TYPE_NUMBER, object, in STORE_store_number()
1088 if (!s->meth->modify_object(s, STORE_OBJECT_TYPE_NUMBER, in STORE_modify_number()
1108 object = s->meth->get_object(s, STORE_OBJECT_TYPE_NUMBER, attributes, in STORE_get_number()
1128 if (!s->meth->delete_object(s, STORE_OBJECT_TYPE_NUMBER, attributes, in STORE_delete_number()
1157 i = s->meth->store_object(s, STORE_OBJECT_TYPE_ARBITRARY, object, in STORE_store_arbitrary()
1178 if (!s->meth->modify_object(s, STORE_OBJECT_TYPE_ARBITRARY, in STORE_modify_arbitrary()
1198 object = s->meth->get_object(s, STORE_OBJECT_TYPE_ARBITRARY, in STORE_get_arbitrary()
1218 if (!s->meth->delete_object(s, STORE_OBJECT_TYPE_ARBITRARY, attributes, in STORE_delete_arbitrary()