Home
last modified time | relevance | path

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

/external/perfetto/ui/src/frontend/
Dfrontend_local_state.ts37 if (next !== current && next.lastUpdate > current.lastUpdate) {
93 lastUpdate: 0,
99 lastUpdate: 0,
106 lastUpdate: 0,
208 lastUpdate: Date.now() / 1000
238 this._selectedArea.lastUpdate = Date.now() / 1000;
269 this._selectedArea = {lastUpdate: Date.now() / 1000};
286 this._omniboxState.lastUpdate = Date.now() / 1000;
329 this._visibleState.lastUpdate = Date.now() / 1000;
338 this._visibleState.lastUpdate = Date.now() / 1000;
Dpanel_container.ts110 this.prevAreaSelection.lastUpdate >= selection.lastUpdate) ||
/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/perfetto/ui/src/controller/aggregation/
Daggregation_controller.ts28 private previousArea: TimestampedAreaSelection = {lastUpdate: 0};
50 const areaChanged = this.previousArea.lastUpdate < selectedArea.lastUpdate;
/external/perfetto/ui/src/common/
Dstate.ts24 }&{lastUpdate: number};
709 lastUpdate: 0,
716 lastUpdate: 0,
720 lastUpdate: 0,
/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/skia/tools/debugger/
DDebugLayerManager.cpp135 int lastUpdate = (key.frame <= frame ? key.frame : -1); in summarizeLayers() local
141 if (lastUpdate > item.frameOfLastUpdate) { in summarizeLayers()
148 key.nodeId, lastUpdate, evt->fullRedraw, in summarizeLayers()
/external/swiftshader/tests/regres/deqp/
Ddeqp.go205 lastUpdate := time.Now()
211 if time.Since(lastUpdate) > time.Minute {
212 lastUpdate = time.Now()
/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/infra/ci/frontend/static/
Dscript.js233 function getLastUpdate(lastUpdate) { argument
234 const lastUpdateMins = Math.ceil((Date.now() - lastUpdate) / 60000);
239 return lastUpdate.toLocaleDateString();
262 m('td', getLastUpdate(cl.lastUpdate)),
596 lastUpdate: parseGerritTime(e.updated), property
/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/perfetto/ui/src/controller/
Dtrace_controller.ts287 {...traceTimeState, lastUpdate: Date.now() / 1000, resolution}));
/external/conscrypt/common/src/jni/main/cpp/conscrypt/
Dnative_crypto.cc4654 ASN1_TIME* lastUpdate = X509_CRL_get_lastUpdate(crl); in NativeCrypto_X509_CRL_get_lastUpdate() local
4655 JNI_TRACE("X509_CRL_get_lastUpdate(%p) => %p", crl, lastUpdate); in NativeCrypto_X509_CRL_get_lastUpdate()
4656 return reinterpret_cast<uintptr_t>(lastUpdate); in NativeCrypto_X509_CRL_get_lastUpdate()