Searched refs:idp (Results 1 - 14 of 14) sorted by relevance

/external/clang/test/SemaCXX/
H A Dcxx0x-constexpr-const.cpp8 int (*idp)(int) = id;
/external/openssl/crypto/x509v3/
H A Dv3_crld.c449 ISSUING_DIST_POINT *idp = NULL; local
453 idp = ISSUING_DIST_POINT_new();
454 if (!idp)
461 ret = set_dist_point_name(&idp->distpoint, ctx, cnf);
468 if (!X509V3_get_value_bool(cnf, &idp->onlyuser))
473 if (!X509V3_get_value_bool(cnf, &idp->onlyCA))
478 if (!X509V3_get_value_bool(cnf, &idp->onlyattr))
483 if (!X509V3_get_value_bool(cnf, &idp->indirectCRL))
488 if (!set_reasons(&idp->onlysomereasons, val))
498 return idp;
541 ISSUING_DIST_POINT *idp = pidp; local
[all...]
/external/openssl/crypto/asn1/
H A Dx_crl.c68 static void setup_idp(X509_CRL *crl, ISSUING_DIST_POINT *idp);
219 crl->idp = NULL;
235 crl->idp = X509_CRL_get_ext_d2i(crl,
237 if (crl->idp)
238 setup_idp(crl, crl->idp);
299 if (crl->idp)
300 ISSUING_DIST_POINT_free(crl->idp);
311 static void setup_idp(X509_CRL *crl, ISSUING_DIST_POINT *idp)
316 if (idp->onlyuser > 0)
321 if (idp
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
H A DX509CRLStoreSelector.java141 byte[] idp = crl
146 if (idp != null)
153 if (!Arrays.areEqual(idp, issuingDistributionPoint))
/external/iproute2/ip/
H A Dxfrm_state.c246 char *idp = NULL; local
426 if (idp)
428 idp = *argv;
444 if (!idp) {
534 char *idp = NULL; local
589 if (idp)
591 idp = *argv;
606 if (!idp) {
792 char *idp = NULL; local
808 if (idp)
925 char *idp = NULL; local
[all...]
H A Dxfrm_policy.c181 char *idp = NULL; local
201 if (idp) {
205 idp = *argv;
/external/tcpdump/
H A Dprint-icmp.c450 register const struct id_rdiscovery *idp; local
486 idp = (struct id_rdiscovery *)&dp->icmp_data;
488 TCHECK(*idp);
490 ipaddr_string(&idp->ird_addr),
491 EXTRACT_32BITS(&idp->ird_pref));
493 ++idp;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DRFC3280CertPathUtilities.java101 IssuingDistributionPoint idp = null;
104 idp = IssuingDistributionPoint.getInstance(CertPathValidatorUtilities.getExtensionValue(crl,
113 if (idp != null)
115 if (idp.getDistributionPoint() != null)
118 DistributionPointName dpName = IssuingDistributionPoint.getInstance(idp).getDistributionPoint();
249 if (idp.onlyContainsUserCerts() && (bc != null && bc.isCA()))
255 if (idp.onlyContainsCACerts() && (bc == null || !bc.isCA()))
262 if (idp.onlyContainsAttributeCerts())
288 ASN1Primitive idp = CertPathValidatorUtilities.getExtensionValue(crl, ISSUING_DISTRIBUTION_POINT);
290 if (idp !
[all...]
H A DX509CRLObject.java68 byte[] idp = crl.getExtensionValue(Extension.issuingDistributionPoint.getId());
69 return idp != null
70 && IssuingDistributionPoint.getInstance(X509ExtensionUtil.fromExtensionValue(idp)).isIndirectCRL();
H A DCertPathValidatorUtilities.java1116 byte[] idp = null;
1119 idp = completeCRL.getExtensionValue(ISSUING_DISTRIBUTION_POINT);
1133 deltaSelect.setIssuingDistributionPoint(idp);
/external/opencv/cv/src/
H A Dcvhough.cpp873 float idp, dr; local
886 idp = 1.f/dp;
887 CV_CALL( accum = cvCreateMat( cvCeil(img->rows*idp)+2, cvCeil(img->cols*idp)+2, CV_32SC1 ));
931 x0 = cvRound((x*idp)*ONE) + ONE + (ONE/2);
932 y0 = cvRound((y*idp)*ONE) + ONE + (ONE/2);
/external/openssl/crypto/x509/
H A Dx509_vfy.c1275 if (!crl->idp ||
1276 idp_check_dp(dp->distpoint, crl->idp->distpoint))
1283 if ((!crl->idp || !crl->idp->distpoint) && (crl_score & CRL_SCORE_ISSUER_NAME))
H A Dx509.h471 ISSUING_DIST_POINT *idp; member in struct:X509_crl_st
/external/openssl/include/openssl/
H A Dx509.h471 ISSUING_DIST_POINT *idp; member in struct:X509_crl_st

Completed in 756 milliseconds