Lines Matching refs:meths
86 custom_ext_method *meth = exts->meths; in custom_ext_find()
106 custom_ext_method *meth = exts->meths; in custom_ext_init()
186 meth = exts->meths + i; in custom_ext_add()
255 custom_ext_method *methsrc = src->meths; in custom_exts_copy_flags()
277 dst->meths = in custom_exts_copy()
278 OPENSSL_memdup(src->meths, in custom_exts_copy()
279 sizeof(*src->meths) * src->meths_count); in custom_exts_copy()
280 if (dst->meths == NULL) in custom_exts_copy()
285 custom_ext_method *methsrc = src->meths + i; in custom_exts_copy()
286 custom_ext_method *methdst = dst->meths + i; in custom_exts_copy()
325 for (i = 0, meth = exts->meths; i < exts->meths_count; i++, meth++) { in custom_exts_free()
333 OPENSSL_free(exts->meths); in custom_exts_free()
388 tmp = OPENSSL_realloc(exts->meths, in add_custom_ext_intern()
393 exts->meths = tmp; in add_custom_ext_intern()
394 meth = exts->meths + exts->meths_count; in add_custom_ext_intern()