Home
last modified time | relevance | path

Searched refs:lastUpdate (Results 1 – 14 of 14) sorted by relevance

/external/boringssl/src/crypto/x509/
Dx509cset.c88 in = x->crl->lastUpdate; in X509_CRL_set_lastUpdate()
92 M_ASN1_TIME_free(x->crl->lastUpdate); in X509_CRL_set_lastUpdate()
93 x->crl->lastUpdate = in; in X509_CRL_set_lastUpdate()
140 return crl->crl->lastUpdate; in X509_CRL_get0_lastUpdate()
Dx_crl.c140 ASN1_SIMPLE(X509_CRL_INFO, lastUpdate, ASN1_TIME),
/external/slf4j/slf4j-migrator/src/main/java/org/slf4j/migrator/internal/
DProgressListenerImpl.java44 long lastUpdate = 0; field in ProgressListenerImpl
57 if (now - lastUpdate < UPDATE_THRESHOLD) { in isTooSoon()
60 lastUpdate = now; in isTooSoon()
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
Dbandwidth_estimator.c82 bweStr->lastUpdate = 0; in WebRtcIsacfix_InitBandwidthEstimator()
232 bweStr->lastUpdate = arrivalTime; in WebRtcIsacfix_UpdateUplinkBwImpl()
271 if ((arrivalTime - bweStr->lastUpdate) > FS3) { in WebRtcIsacfix_UpdateUplinkBwImpl()
274 numPktsExpected = (arrivalTime - bweStr->lastUpdate) / frameSizeSampl; in WebRtcIsacfix_UpdateUplinkBwImpl()
315 bweStr->lastUpdate = arrivalTime; in WebRtcIsacfix_UpdateUplinkBwImpl()
321 bweStr->lastUpdate = arrivalTime; in WebRtcIsacfix_UpdateUplinkBwImpl()
417 bweStr->lastUpdate = arrivalTime; in WebRtcIsacfix_UpdateUplinkBwImpl()
487 bweStr->lastUpdate = arrivalTime; in WebRtcIsacfix_UpdateUplinkBwImpl()
Dstructs.h200 …uint32_t lastUpdate; /* Time since the last update of the Bottle Neck estimate (in samp… member
/external/perfetto/infra/perfetto-ci.appspot.com/static/
Dscript.js134 const lastUpdate = new Date(cl.updated + ' UTC');
135 const lastUpdateMins = Math.ceil((Date.now() - lastUpdate) / 60000);
142 lastUpdateText = lastUpdate.toLocaleDateString();
/external/perfetto/ui/src/frontend/
Dfrontend_local_state.ts57 lastUpdate: this._lastUpdate,
64 if (this._lastUpdate >= frontendLocalState.lastUpdate) {
/external/perfetto/ui/src/common/
Dstate.ts73 lastUpdate: number; // Epoch in seconds (Date.now() / 1000). property
277 lastUpdate: 0,
Dactions.ts225 state: StateDraft, args: {time: TraceTime; lastUpdate: number;}): void {
227 state.frontendLocalState.lastUpdate = args.lastUpdate;
/external/scapy/scapy/layers/tls/
Dcert.py773 lastUpdate = tbsCertList.this_update.val
774 if lastUpdate[-1] == "Z":
775 lastUpdate = lastUpdate[:-1]
777 self.lastUpdate = time.strptime(lastUpdate, "%y%m%d%H%M%S")
780 self.lastUpdate_str_simple = time.strftime("%x", self.lastUpdate)
/external/perfetto/ui/src/controller/
Dtrace_controller.ts199 if (globals.state.frontendLocalState.lastUpdate === 0) {
202 lastUpdate: Date.now() / 1000,
/external/scapy/test/
Dcert.uts286 = CRL class : Checking lastUpdate date extraction in tuple format
287 x.lastUpdate == (2006, 11, 2, 0, 0, 0, 3, 306, -1)
/external/boringssl/src/include/openssl/
Dx509.h408 ASN1_TIME *lastUpdate; member
536 #define X509_CRL_get_lastUpdate(x) ((x)->crl->lastUpdate)
/external/conscrypt/common/src/jni/main/cpp/conscrypt/
Dnative_crypto.cc4615 ASN1_TIME* lastUpdate = X509_CRL_get_lastUpdate(crl); in NativeCrypto_X509_CRL_get_lastUpdate() local
4616 JNI_TRACE("X509_CRL_get_lastUpdate(%p) => %p", crl, lastUpdate); in NativeCrypto_X509_CRL_get_lastUpdate()
4617 return reinterpret_cast<uintptr_t>(lastUpdate); in NativeCrypto_X509_CRL_get_lastUpdate()