Home
last modified time | relevance | path

Searched refs:dpname (Results 1 – 9 of 9) sorted by relevance

/freebsd-13-stable/crypto/openssl/crypto/x509v3/
HDv3_crld.c300 dpn->dpname = NULL; in dpn_cb()
304 X509_NAME_free(dpn->dpname); in dpn_cb()
488 dpn->dpname = X509_NAME_dup(iname); in DIST_POINT_set_dpname()
489 if (!dpn->dpname) in DIST_POINT_set_dpname()
493 if (!X509_NAME_add_entry(dpn->dpname, ne, -1, i ? 0 : 1)) { in DIST_POINT_set_dpname()
494 X509_NAME_free(dpn->dpname); in DIST_POINT_set_dpname()
495 dpn->dpname = NULL; in DIST_POINT_set_dpname()
500 if (i2d_X509_NAME(dpn->dpname, NULL) < 0) { in DIST_POINT_set_dpname()
501 X509_NAME_free(dpn->dpname); in DIST_POINT_set_dpname()
502 dpn->dpname = NULL; in DIST_POINT_set_dpname()
/freebsd-13-stable/crypto/heimdal/lib/hx509/
HDprint.c501 DistributionPointName dpname; in check_CRLDistributionPoints() local
506 &dpname, NULL); in check_CRLDistributionPoints()
513 switch (dpname.element) { in check_CRLDistributionPoints()
517 for (j = 0 ; j < dpname.u.fullName.len; j++) { in check_CRLDistributionPoints()
519 GeneralName *name = &dpname.u.fullName.val[j]; in check_CRLDistributionPoints()
537 free_DistributionPointName(&dpname); in check_CRLDistributionPoints()
/freebsd-13-stable/contrib/unbound/services/cache/
HDdns.h197 int no_partial, uint8_t* dpname, size_t dpnamelen);
HDdns.c893 int no_partial, uint8_t* dpname, size_t dpnamelen) in dns_cache_lookup() argument
1015 if(dpname && dpnamelen in dns_cache_lookup()
1016 && !dname_subdomain_c(k.qname, dpname)) in dns_cache_lookup()
/freebsd-13-stable/contrib/unbound/iterator/
HDiter_utils.c1495 char dpname[255+1]; in iter_stub_fwd_no_cache() local
1497 dname_str(stub->dp->name, dpname); in iter_stub_fwd_no_cache()
1498 verbose(VERB_ALGO, "stub for %s %s has no_cache", qname, dpname); in iter_stub_fwd_no_cache()
1523 char dpname[255+1]; in iter_stub_fwd_no_cache() local
1525 dname_str(dp->name, dpname); in iter_stub_fwd_no_cache()
1526 verbose(VERB_ALGO, "forward for %s %s has no_cache", qname, dpname); in iter_stub_fwd_no_cache()
HDiterator.c1386 uint8_t* delname, *dpname=NULL; in processInitRequest() local
1493 if (iter_stub_fwd_no_cache(qstate, &iq->qchase, &dpname, &dpnamelen, in processInitRequest()
1509 qstate->region, qstate->env->scratch, 0, dpname, in processInitRequest()
1652 dpname, dpnamelen); in processInitRequest()
/freebsd-13-stable/contrib/unbound/cachedb/
HDcachedb.c698 uint8_t* dpname=NULL; in cachedb_intcache_lookup() local
706 &dpname, &dpnamelen, dpname_storage, sizeof(dpname_storage))) in cachedb_intcache_lookup()
713 dpname, dpnamelen in cachedb_intcache_lookup()
/freebsd-13-stable/crypto/openssl/crypto/x509/
HDx509_vfy.c1369 if (!a->dpname) in idp_check_dp()
1373 if (!b->dpname) in idp_check_dp()
1375 if (!X509_NAME_cmp(a->dpname, b->dpname)) in idp_check_dp()
1381 nm = a->dpname; in idp_check_dp()
1384 if (!b->dpname) in idp_check_dp()
1388 nm = b->dpname; in idp_check_dp()
/freebsd-13-stable/crypto/openssl/include/openssl/
HDx509v3.h179 X509_NAME *dpname; member