Lines Matching refs:methdst
263 custom_ext_method *methdst = custom_ext_find(dst, methsrc->role,
266 if (methdst == NULL)
269 methdst->ext_flags = methsrc->ext_flags;
276 static void custom_ext_copy_old_cb(custom_ext_method *methdst,
284 methdst->add_arg = NULL;
285 methdst->parse_arg = NULL;
289 methdst->add_arg = OPENSSL_memdup(methsrc->add_arg,
291 methdst->parse_arg = OPENSSL_memdup(methsrc->parse_arg,
294 if (methdst->add_arg == NULL || methdst->parse_arg == NULL)
340 custom_ext_method *methdst = OPENSSL_realloc(dst->meths,
343 if (methdst == NULL)
346 dst->meths = methdst;
347 methdst += dst->meths_count;
355 memcpy(methdst, methsrc, sizeof(custom_ext_method));
356 custom_ext_copy_old_cb(methdst, methsrc, &err);
357 methdst++;