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

  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/ocsp/
SingleResponse.java 19 private DERGeneralizedTime nextUpdate;
26 DERGeneralizedTime nextUpdate,
32 this.nextUpdate = nextUpdate;
45 this.nextUpdate = DERGeneralizedTime.getInstance(
56 this.nextUpdate = DERGeneralizedTime.getInstance(o, true);
104 return nextUpdate;
119 * nextUpdate [0] EXPLICIT GeneralizedTime OPTIONAL,
131 if (nextUpdate != null)
133 v.add(new DERTaggedObject(true, 0, nextUpdate));
    [all...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/x509/
V2TBSCertListGenerator.java 25 * nextUpdate Time OPTIONAL,
45 Time thisUpdate, nextUpdate=null;
73 DERUTCTime nextUpdate)
75 this.nextUpdate = new Time(nextUpdate);
85 Time nextUpdate)
87 this.nextUpdate = nextUpdate;
189 if (nextUpdate != null)
191 v.add(nextUpdate);
    [all...]
TBSCertList.java 21 * nextUpdate Time OPTIONAL,
90 Time nextUpdate;
146 nextUpdate = Time.getInstance(seq.getObjectAt(seqPos++));
195 return nextUpdate;
  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/x509/
TBSCertList.java 58 * nextUpdate Time OPTIONAL,
80 // the value of nextUpdate of the structure
81 private final Date nextUpdate;
210 * by which the next CRL will be issued in the nextUpdate field (section
228 this.nextUpdate = null;
236 * Note that if the version of CRL is 1, then nextUpdate,
243 * @param nextUpdate: Time
248 Name issuer, Date thisUpdate, Date nextUpdate,
254 this.nextUpdate = nextUpdate;
    [all...]
  /external/openssl/crypto/x509/
x509cset.c 107 in=x->crl->nextUpdate;
113 M_ASN1_TIME_free(x->crl->nextUpdate);
114 x->crl->nextUpdate=in;
x509.h 444 ASN1_TIME *nextUpdate;
740 #define X509_CRL_get_nextUpdate(x) ((x)->crl->nextUpdate)
    [all...]
  /external/openssl/crypto/asn1/
x_crl.c 99 ASN1_OPT(X509_CRL_INFO, nextUpdate, ASN1_TIME),
  /dalvik/libcore/security/src/test/java/tests/security/cert/
X509CRLSelector2Test.java 645 private Date nextUpdate = null;
654 public TestCRL(Date thisUpdate, Date nextUpdate) {
655 setUpdateDates(thisUpdate, nextUpdate);
662 public void setUpdateDates(Date thisUpdate, Date nextUpdate) {
664 this.nextUpdate = nextUpdate;
734 return nextUpdate;
  /frameworks/base/services/java/com/android/server/
UiModeManagerService.java 760 long nextUpdate = 0;
763 nextUpdate = currentTime + 12 * DateUtils.HOUR_IN_MILLIS;
767 nextUpdate += DateUtils.MINUTE_IN_MILLIS;
776 nextUpdate += tw.mSunrise
    [all...]
  /external/openssl/crypto/ocsp/
ocsp_prn.c 263 if (single->nextUpdate)
266 if (!ASN1_GENERALIZEDTIME_print(bp,single->nextUpdate))
ocsp_asn.c 144 ASN1_EXP_OPT(OCSP_SINGLERESP, nextUpdate, ASN1_GENERALIZEDTIME, 0),
ocsp_cl.c 281 if(nextupd) *nextupd = single->nextUpdate;
306 /* Check validity of thisUpdate and nextUpdate fields. It is possible that the request will
309 * Also to avoid accepting very old responses without a nextUpdate field an optional maxage
348 /* Check nextUpdate is valid and not more than nsec in the past */
364 /* Also don't allow nextUpdate to precede thisUpdate */
ocsp_srv.c 146 !ASN1_TIME_to_generalizedtime(nextupd, &single->nextUpdate))
ocsp.h 249 * nextUpdate [0] EXPLICIT GeneralizedTime OPTIONAL,
257 ASN1_GENERALIZEDTIME *nextUpdate;
  /external/openssl/include/openssl/
ocsp.h 249 * nextUpdate [0] EXPLICIT GeneralizedTime OPTIONAL,
257 ASN1_GENERALIZEDTIME *nextUpdate;
x509.h 444 ASN1_TIME *nextUpdate;
740 #define X509_CRL_get_nextUpdate(x) ((x)->crl->nextUpdate)
    [all...]

Completed in 2229 milliseconds