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()
187 meth = exts->meths + i; in custom_ext_add()
266 custom_ext_method *methsrc = src->meths; in custom_exts_copy_flags()
288 dst->meths = in custom_exts_copy()
289 OPENSSL_memdup(src->meths, in custom_exts_copy()
290 sizeof(*src->meths) * src->meths_count); in custom_exts_copy()
291 if (dst->meths == NULL) in custom_exts_copy()
296 custom_ext_method *methsrc = src->meths + i; in custom_exts_copy()
297 custom_ext_method *methdst = dst->meths + i; in custom_exts_copy()
336 for (i = 0, meth = exts->meths; i < exts->meths_count; i++, meth++) { in custom_exts_free()
344 OPENSSL_free(exts->meths); in custom_exts_free()
345 exts->meths = NULL; in custom_exts_free()
404 tmp = OPENSSL_realloc(exts->meths, in ossl_tls_add_custom_ext_intern()
409 exts->meths = tmp; in ossl_tls_add_custom_ext_intern()
410 meth = exts->meths + exts->meths_count; in ossl_tls_add_custom_ext_intern()