• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/store/

Lines Matching defs:handle

351     void *handle;
356 handle = s->meth->list_object_start(s,
359 if (!handle) {
364 return handle;
367 X509 *STORE_list_certificate_next(STORE *s, void *handle)
375 object = s->meth->list_object_next(s, handle);
391 int STORE_list_certificate_end(STORE *s, void *handle)
396 if (!s->meth->list_object_end(s, handle)) {
404 int STORE_list_certificate_endp(STORE *s, void *handle)
409 if (!s->meth->list_object_endp(s, handle)) {
561 void *handle;
566 handle = s->meth->list_object_start(s, STORE_OBJECT_TYPE_PRIVATE_KEY,
568 if (!handle) {
573 return handle;
576 EVP_PKEY *STORE_list_private_key_next(STORE *s, void *handle)
584 object = s->meth->list_object_next(s, handle);
599 int STORE_list_private_key_end(STORE *s, void *handle)
604 if (!s->meth->list_object_end(s, handle)) {
612 int STORE_list_private_key_endp(STORE *s, void *handle)
617 if (!s->meth->list_object_endp(s, handle)) {
745 void *handle;
750 handle = s->meth->list_object_start(s, STORE_OBJECT_TYPE_PUBLIC_KEY,
752 if (!handle) {
757 return handle;
760 EVP_PKEY *STORE_list_public_key_next(STORE *s, void *handle)
768 object = s->meth->list_object_next(s, handle);
783 int STORE_list_public_key_end(STORE *s, void *handle)
788 if (!s->meth->list_object_end(s, handle)) {
796 int STORE_list_public_key_endp(STORE *s, void *handle)
801 if (!s->meth->list_object_endp(s, handle)) {
926 void *handle;
931 handle = s->meth->list_object_start(s, STORE_OBJECT_TYPE_X509_CRL,
933 if (!handle) {
937 return handle;
940 X509_CRL *STORE_list_crl_next(STORE *s, void *handle)
948 object = s->meth->list_object_next(s, handle);
962 int STORE_list_crl_end(STORE *s, void *handle)
967 if (!s->meth->list_object_end(s, handle)) {
974 int STORE_list_crl_endp(STORE *s, void *handle)
979 if (!s->meth->list_object_endp(s, handle)) {
1467 STORE_ATTR_INFO *STORE_parse_attrs_next(void *handle)
1469 struct attr_list_ctx_st *context = (struct attr_list_ctx_st *)handle;
1554 int STORE_parse_attrs_end(void *handle)
1556 struct attr_list_ctx_st *context = (struct attr_list_ctx_st *)handle;
1569 int STORE_parse_attrs_endp(void *handle)
1571 struct attr_list_ctx_st *context = (struct attr_list_ctx_st *)handle;