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

  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
TBSCertList.java 56 * nextUpdate Time OPTIONAL,
78 // the value of nextUpdate of the structure
79 private final Date nextUpdate;
208 * by which the next CRL will be issued in the nextUpdate field (section
226 this.nextUpdate = null;
234 * Note that if the version of CRL is 1, then nextUpdate,
241 * @param nextUpdate: Time
246 Name issuer, Date thisUpdate, Date nextUpdate,
252 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 454 ASN1_TIME *nextUpdate;
622 #define X509_CRL_get_nextUpdate(x) ((x)->crl->nextUpdate)
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
TBSCertList.java 23 * nextUpdate Time OPTIONAL,
128 Time nextUpdate;
184 nextUpdate = Time.getInstance(seq.getObjectAt(seqPos++));
227 return nextUpdate;
  /libcore/luni/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;
    [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 280 if(nextupd) *nextupd = single->nextUpdate;
305 /* Check validity of thisUpdate and nextUpdate fields. It is possible that the request will
308 * Also to avoid accepting very old responses without a nextUpdate field an optional maxage
347 /* Check nextUpdate is valid and not more than nsec in the past */
363 /* Also don't allow nextUpdate to precede thisUpdate */
ocsp_srv.c 146 !ASN1_TIME_to_generalizedtime(nextupd, &single->nextUpdate))
ocsp.h 250 * nextUpdate [0] EXPLICIT GeneralizedTime OPTIONAL,
258 ASN1_GENERALIZEDTIME *nextUpdate;
  /external/openssl/crypto/asn1/
x_crl.c 117 ASN1_OPT(X509_CRL_INFO, nextUpdate, ASN1_TIME),
  /external/openssl/include/openssl/
ocsp.h 250 * nextUpdate [0] EXPLICIT GeneralizedTime OPTIONAL,
258 ASN1_GENERALIZEDTIME *nextUpdate;
x509.h 454 ASN1_TIME *nextUpdate;
622 #define X509_CRL_get_nextUpdate(x) ((x)->crl->nextUpdate)
    [all...]

Completed in 147 milliseconds