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()
185 meth = exts->meths + i; in custom_ext_add()
257 custom_ext_method *methsrc = src->meths; in custom_exts_copy_flags()
279 dst->meths = in custom_exts_copy()
280 OPENSSL_memdup(src->meths, in custom_exts_copy()
281 sizeof(*src->meths) * src->meths_count); in custom_exts_copy()
282 if (dst->meths == NULL) in custom_exts_copy()
287 custom_ext_method *methsrc = src->meths + i; in custom_exts_copy()
288 custom_ext_method *methdst = dst->meths + i; in custom_exts_copy()
327 for (i = 0, meth = exts->meths; i < exts->meths_count; i++, meth++) { in custom_exts_free()
335 OPENSSL_free(exts->meths); in custom_exts_free()
336 exts->meths = NULL; in custom_exts_free()
392 tmp = OPENSSL_realloc(exts->meths, in add_custom_ext_intern()
397 exts->meths = tmp; in add_custom_ext_intern()
398 meth = exts->meths + exts->meths_count; in add_custom_ext_intern()