HomeSort by relevance Sort by last modified time
    Searched refs:idp (Results 1 - 21 of 21) sorted by null

  /external/clang/test/SemaCXX/
cxx0x-constexpr-const.cpp 8 int (*idp)(int) = id;
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
IssuingDistributionPoint.java 68 IssuingDistributionPoint idp = local
70 idp.encoding = encoding;
71 return idp;
148 IssuingDistributionPoint idp = new IssuingDistributionPoint(
150 idp.encoding = in.getEncoded();
152 idp.setOnlyContainsUserCerts((Boolean) values[1]);
155 idp.setOnlyContainsCACerts((Boolean) values[2]);
158 idp.setIndirectCRL((Boolean) values[4]);
161 idp.setOnlyContainsAttributeCerts((Boolean) values[5]);
163 return idp;
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/x509v3/
v3_crld.c 449 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/x509v3/
v3_crld.c 449 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/openssl/openssl/crypto/asn1/
x_crl.c 68 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);
253 * indicate this in a flag. We only currently handle IDP so
271 /* We handle IDP and deltas */
299 if (crl->idp)
300 ISSUING_DIST_POINT_free(crl->idp);
309 /* Convert IDP into a more convenient form *
    [all...]
  /external/openssl/crypto/asn1/
x_crl.c 68 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);
253 * indicate this in a flag. We only currently handle IDP so
271 /* We handle IDP and deltas */
299 if (crl->idp)
300 ISSUING_DIST_POINT_free(crl->idp);
309 /* Convert IDP into a more convenient form *
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
X509CRLStoreSelector.java 141 byte[] idp = crl
146 if (idp != null)
153 if (!Arrays.areEqual(idp, issuingDistributionPoint))
  /external/tcpdump/
print-icmp.c 451 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/
RFC3280CertPathUtilities.java 65 * If the complete CRL includes an issuing distribution point (IDP) CRL
68 * (i) If the distribution point name is present in the IDP CRL extension
70 * the names in the IDP matches one of the names in the DP. If the
71 * distribution point name is present in the IDP CRL extension and the
73 * names in the IDP matches one of the names in the cRLIssuer field of the
77 * (ii) If the onlyContainsUserCerts boolean is asserted in the IDP CRL
82 * (iii) If the onlyContainsCACerts boolean is asserted in the IDP CRL
101 IssuingDistributionPoint idp = null; local
104 idp = IssuingDistributionPoint.getInstance(CertPathValidatorUtilities.getExtensionValue(crl,
113 if (idp != null
288 ASN1Primitive idp = CertPathValidatorUtilities.getExtensionValue(crl, ISSUING_DISTRIBUTION_POINT); local
349 IssuingDistributionPoint idp = null; local
    [all...]
X509CRLObject.java 70 byte[] idp = crl.getExtensionValue(Extension.issuingDistributionPoint.getId());
71 return idp != null
72 && IssuingDistributionPoint.getInstance(ASN1OctetString.getInstance(idp).getOctets()).isIndirectCRL();
CertPathValidatorUtilities.java     [all...]
  /external/iproute2/ip/
xfrm_state.c 245 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...]
xfrm_policy.c 186 char *idp = NULL; local
206 if (idp) {
210 idp = *argv;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/
X509CRLObject.java 72 byte[] idp = crl.getExtensionValue(Extension.issuingDistributionPoint.getId());
73 return idp != null
74 && IssuingDistributionPoint.getInstance(ASN1OctetString.getInstance(idp).getOctets()).isIndirectCRL();
  /external/opencv/cv/src/
cvhough.cpp 873 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);
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/x509/
x509_vfy.c 925 /* AKID and IDP must match */
984 /* Invalid IDP cannot be processed */
1251 /* Check CRLDP and IDP */
1275 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))
    [all...]
x509.h 471 ISSUING_DIST_POINT *idp; member in struct:X509_crl_st
472 /* Convenient breakdown of IDP */
    [all...]
  /external/openssl/crypto/x509/
x509_vfy.c 936 /* AKID and IDP must match */
995 /* Invalid IDP cannot be processed */
1262 /* Check CRLDP and IDP */
1286 if (!crl->idp ||
1287 idp_check_dp(dp->distpoint, crl->idp->distpoint))
    [all...]
x509.h 471 ISSUING_DIST_POINT *idp; member in struct:X509_crl_st
472 /* Convenient breakdown of IDP */
    [all...]
  /external/chromium_org/third_party/openssl/openssl/include/openssl/
x509.h 471 ISSUING_DIST_POINT *idp; member in struct:X509_crl_st
472 /* Convenient breakdown of IDP */
    [all...]
  /external/openssl/include/openssl/
x509.h 471 ISSUING_DIST_POINT *idp; member in struct:X509_crl_st
472 /* Convenient breakdown of IDP */
    [all...]

Completed in 696 milliseconds