Lines Matching defs:cert_ext
128 struct cert_ext {
133 static struct cert_ext *cert_ext;
1637 cert_ext = xreallocarray(cert_ext, ncert_ext + 1, sizeof(*cert_ext));
1638 cert_ext[ncert_ext].key = xstrdup(key);
1639 cert_ext[ncert_ext].val = value == NULL ? NULL : xstrdup(value);
1640 cert_ext[ncert_ext].crit = iscrit;
1648 const struct cert_ext *a = (const struct cert_ext *)_a;
1649 const struct cert_ext *b = (const struct cert_ext *)_b;
1671 const struct cert_ext *ext;
1677 ext = &cert_ext[i];
1725 qsort(cert_ext, ncert_ext, sizeof(*cert_ext), cert_ext_cmp);