Searched refs:idp (Results 1 - 19 of 19) 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/chromium_org/third_party/boringssl/src/crypto/x509v3/
H A Dv3_crld.c447 ISSUING_DIST_POINT *idp = NULL; local
452 idp = ISSUING_DIST_POINT_new();
453 if (!idp)
460 ret = set_dist_point_name(&idp->distpoint, ctx, cnf);
467 if (!X509V3_get_value_bool(cnf, &idp->onlyuser))
472 if (!X509V3_get_value_bool(cnf, &idp->onlyCA))
477 if (!X509V3_get_value_bool(cnf, &idp->onlyattr))
482 if (!X509V3_get_value_bool(cnf, &idp->indirectCRL))
487 if (!set_reasons(&idp->onlysomereasons, val))
497 return idp;
540 ISSUING_DIST_POINT *idp = pidp; local
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/x509/
H A Dx_crl.c72 static void setup_idp(X509_CRL *crl, ISSUING_DIST_POINT *idp);
224 crl->idp = NULL;
238 crl->idp = X509_CRL_get_ext_d2i(crl,
240 if (crl->idp)
241 setup_idp(crl, crl->idp);
303 if (crl->idp)
304 ISSUING_DIST_POINT_free(crl->idp);
315 static void setup_idp(X509_CRL *crl, ISSUING_DIST_POINT *idp)
320 if (idp->onlyuser > 0)
325 if (idp
[all...]
H A Dx509_vfy.c1402 if (!crl->idp ||
1403 idp_check_dp(dp->distpoint, crl->idp->distpoint))
1410 if ((!crl->idp || !crl->idp->distpoint) && (crl_score & CRL_SCORE_ISSUER_NAME))
/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);
300 if (crl->idp)
301 ISSUING_DIST_POINT_free(crl->idp);
312 static void setup_idp(X509_CRL *crl, ISSUING_DIST_POINT *idp)
317 if (idp->onlyuser > 0)
322 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/tcpdump/
H A Dprint-icmp.c451 register const struct id_rdiscovery *idp; local
487 idp = (struct id_rdiscovery *)&dp->icmp_data;
489 TCHECK(*idp);
491 ipaddr_string(&idp->ird_addr),
492 EXTRACT_32BITS(&idp->ird_pref));
494 ++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.java70 byte[] idp = crl.getExtensionValue(Extension.issuingDistributionPoint.getId());
71 return idp != null
72 && IssuingDistributionPoint.getInstance(ASN1OctetString.getInstance(idp).getOctets()).isIndirectCRL();
H A DCertPathValidatorUtilities.java1119 byte[] idp = null;
1122 idp = completeCRL.getExtensionValue(ISSUING_DISTRIBUTION_POINT);
1136 deltaSelect.setIssuingDistributionPoint(idp);
/external/iproute2/ip/
H A Dxfrm_state.c245 char *idp = NULL; local
459 if (idp)
461 idp = *argv;
477 if (!idp) {
567 char *idp = NULL; local
622 if (idp)
624 idp = *argv;
639 if (!idp) {
825 char *idp = NULL; local
841 if (idp)
958 char *idp = NULL; local
[all...]
H A Dxfrm_policy.c186 char *idp = NULL; local
206 if (idp) {
210 idp = *argv;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/
H A DX509CRLObject.java72 byte[] idp = crl.getExtensionValue(Extension.issuingDistributionPoint.getId());
73 return idp != null
74 && IssuingDistributionPoint.getInstance(ASN1OctetString.getInstance(idp).getOctets()).isIndirectCRL();
/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.c1286 if (!crl->idp ||
1287 idp_check_dp(dp->distpoint, crl->idp->distpoint))
1294 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
/external/chromium_org/third_party/boringssl/src/include/openssl/
H A Dx509.h427 ISSUING_DIST_POINT *idp; member in struct:X509_crl_st

Completed in 9419 milliseconds