Lines Matching defs:matched
2701 int matched = 0;
2712 * If we've previously matched a PKIX-?? record, no need to test any
2743 * we've matched a DANE-?? record and the peer is authenticated, or, after
2744 * exhausting all DANE-?? records, we've matched a PKIX-?? record, which is
2748 for (i = 0; matched == 0 && i < recnum; ++i) {
2798 matched = -1;
2812 matched = 1;
2813 if (matched || dane->mdpth < 0) {
2826 return matched;
2833 int matched = 0;
2845 if (cert != NULL && (matched = dane_match(ctx, cert, depth)) < 0)
2846 return matched;
2847 if (matched > 0) {
2915 int matched;
2927 * + matched < 0, internal error.
2928 * + matched == 1, we matched a DANE-EE(3) record
2929 * + matched == 0, mdepth < 0 (no PKIX-EE match) and there are no
2932 matched = dane_match(ctx, ctx->cert, 0);
2933 done = matched != 0 || (!DANETLS_HAS_TA(dane) && dane->mdpth < 0);
2938 if (matched > 0) {
2952 if (matched < 0) {