/libcore/support/src/test/java/tests/resources/x509/ |
crl-rsa-dates.txt | 2 nextUpdate=Mar 8 22:42:08 2013 GMT
|
crl-rsa-dsa-dates.txt | 2 nextUpdate=Apr 5 00:42:08 2013 GMT
|
/libcore/luni/src/main/java/org/apache/harmony/security/x509/ |
TBSCertList.java | 55 * nextUpdate Time OPTIONAL, 76 /** the value of nextUpdate of the structure */ 77 private final Date nextUpdate; 195 Name issuer, Date thisUpdate, Date nextUpdate, 202 this.nextUpdate = nextUpdate; 237 * Returns the value of nextUpdate field of the structure. 240 return nextUpdate; 277 && (nextUpdate == null 278 ? that.nextUpdate == nul [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/ |
TBSCertList.java | 26 * nextUpdate Time OPTIONAL, 143 Time nextUpdate; 197 nextUpdate = Time.getInstance(seq.getObjectAt(seqPos++)); 244 return nextUpdate; 291 if (nextUpdate != null) 293 v.add(nextUpdate);
|
/external/chromium_org/chrome/browser/ui/cocoa/tabs/ |
tab_view.mm | 585 NSTimeInterval nextUpdate = kNoUpdate; 599 nextUpdate = MIN(kGlowUpdateInterval, nextUpdate); 607 nextUpdate = MIN(kGlowUpdateInterval, nextUpdate); 611 nextUpdate = MIN(hoverHoldEndTime_ - currentTime, nextUpdate); 625 nextUpdate = MIN(kAlertHoldDuration, nextUpdate); 627 nextUpdate = MIN(kGlowUpdateInterval, nextUpdate) [all...] |
/libcore/luni/src/test/java/libcore/java/security/cert/ |
X509CRLTest.java | 231 Date nextUpdate = dates.get("nextUpdate"); 234 assertNotNull(nextUpdate); 237 assertDateEquals(nextUpdate, crl.getNextUpdate()); 245 Date nextUpdate = dates.get("nextUpdate"); 248 assertNotNull(nextUpdate); 251 assertDateEquals(nextUpdate, crl.getNextUpdate());
|
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/ |
CertificateListTest.java | 67 private static Date nextUpdate; 69 nextUpdate = new Date(thisUpdate.getTime()+100000); 135 nextUpdate, revokedCertificates, crlExtensions); 170 nextUpdate, revokedCertificates, crlExtensions);
|
/external/chromium_org/third_party/openssl/openssl/apps/ |
crl.c | 87 " -nextupdate - nextUpdate field\n", 110 int hash=0,issuer=0,lastupdate=0,nextupdate=0,noout=0,text=0; local 204 else if (strcmp(*argv,"-nextupdate") == 0) 205 nextupdate= ++num; 314 if (nextupdate == i) 316 BIO_printf(bio_out,"nextUpdate=");
|
/external/openssl/apps/ |
crl.c | 87 " -nextupdate - nextUpdate field\n", 110 int hash=0,issuer=0,lastupdate=0,nextupdate=0,noout=0,text=0; local 204 else if (strcmp(*argv,"-nextupdate") == 0) 205 nextupdate= ++num; 314 if (nextupdate == i) 316 BIO_printf(bio_out,"nextUpdate=");
|
/external/chromium/chrome/browser/ui/cocoa/tabs/ |
tab_view.mm | [all...] |
/frameworks/base/services/java/com/android/server/ |
TwilightService.java | 499 long nextUpdate = 0; 502 nextUpdate = now + 12 * DateUtils.HOUR_IN_MILLIS; 505 nextUpdate += DateUtils.MINUTE_IN_MILLIS; 508 nextUpdate += tomorrowSunrise; 510 nextUpdate += todaySunset; 512 nextUpdate += todaySunrise; 517 Slog.d(TAG, "Next update in " + (nextUpdate - now) + " ms"); 523 mAlarmManager.setExact(AlarmManager.RTC, nextUpdate, pendingIntent);
|
/external/chromium_org/chrome/browser/resources/chromeos/wallpaper_manager/js/ |
event_page.js | 201 var nextUpdate = this.nextUpdateTime(new Date()); 202 chrome.alarms.create({when: nextUpdate}); 212 var nextUpdate = new Date(now.setDate(now.getDate() + 1)).toDateString(); 213 return new Date(nextUpdate).getTime();
|
/external/chromium_org/third_party/openssl/openssl/crypto/x509/ |
x509cset.c | 107 in=x->crl->nextUpdate; 113 M_ASN1_TIME_free(x->crl->nextUpdate); 114 x->crl->nextUpdate=in;
|
/external/openssl/crypto/x509/ |
x509cset.c | 107 in=x->crl->nextUpdate; 113 M_ASN1_TIME_free(x->crl->nextUpdate); 114 x->crl->nextUpdate=in;
|
/external/chromium_org/third_party/openssl/openssl/crypto/ocsp/ |
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_err.c | 100 {ERR_REASON(OCSP_R_ERROR_IN_NEXTUPDATE_FIELD),"error in nextupdate field"}, 104 {ERR_REASON(OCSP_R_NEXTUPDATE_BEFORE_THISUPDATE),"nextupdate before thisupdate"},
|
ocsp_prn.c | 261 if (single->nextUpdate) 264 if (!ASN1_GENERALIZEDTIME_print(bp,single->nextUpdate))
|
ocsp_asn.c | 144 ASN1_EXP_OPT(OCSP_SINGLERESP, nextUpdate, ASN1_GENERALIZEDTIME, 0),
|
/external/openssl/crypto/ocsp/ |
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_err.c | 100 {ERR_REASON(OCSP_R_ERROR_IN_NEXTUPDATE_FIELD),"error in nextupdate field"}, 104 {ERR_REASON(OCSP_R_NEXTUPDATE_BEFORE_THISUPDATE),"nextupdate before thisupdate"},
|
ocsp_prn.c | 261 if (single->nextUpdate) 264 if (!ASN1_GENERALIZEDTIME_print(bp,single->nextUpdate))
|
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/provider/cert/ |
X509CRLImplTest.java | 92 private static Date nextUpdate; 94 nextUpdate = new Date(thisUpdate.getTime()+100000); 203 nextUpdate, revokedCertificates, crlExtensions); 336 assertTrue("Incorrect nextUpdate value", 337 nextUpdate.getTime()/1000 == crl.getNextUpdate().getTime()/1000);
|
/external/apache-harmony/security/src/test/impl/java.injected/java/security/cert/ |
X509CRLSelectorTest.java | 60 private Date nextUpdate = null; 66 public TestCRL(Date thisUpdate, Date nextUpdate) { 67 setUpdateDates(thisUpdate, nextUpdate); 74 public void setUpdateDates(Date thisUpdate, Date nextUpdate) { 76 this.nextUpdate = nextUpdate; 147 return nextUpdate;
|
/libcore/luni/src/test/java/tests/security/cert/ |
X509CRLSelector2Test.java | 520 private Date nextUpdate = null; 529 public TestCRL(Date thisUpdate, Date nextUpdate) { 530 setUpdateDates(thisUpdate, nextUpdate); 537 public void setUpdateDates(Date thisUpdate, Date nextUpdate) { 539 this.nextUpdate = nextUpdate; 609 return nextUpdate;
|
/libcore/luni/src/main/java/java/security/cert/ |
X509CRL.java | 194 * Returns the {@code nextUpdate} value of this CRL. 196 * @return the {@code nextUpdate} value of this CRL, or {@code null} if none
|