Lines Matching refs:thisexd
569 const EXTENSION_DEFINITION *thisexd;
661 for (thisexd = ext_defs, i = 0; i < OSSL_NELEM(ext_defs);
662 i++, thisexd++) {
663 if (thisexd->init != NULL && (thisexd->context & context) != 0
664 && extension_is_relevant(s, thisexd->context, context)
665 && !thisexd->init(s, context)) {
746 const EXTENSION_DEFINITION *thisexd;
764 for (i = 0, thisexd = ext_defs; i < OSSL_NELEM(ext_defs);
765 i++, thisexd++) {
766 if (thisexd->final != NULL && (thisexd->context & context) != 0
767 && !thisexd->final(s, context, exts[i].present)) {
807 const EXTENSION_DEFINITION *thisexd;
841 for (i = 0, thisexd = ext_defs; i < OSSL_NELEM(ext_defs); i++, thisexd++) {
847 if (!should_add_extension(s, thisexd->context, context, max_version))
850 construct = s->server ? thisexd->construct_stoc
851 : thisexd->construct_ctos;