Home
last modified time | relevance | path

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

/aosp14/frameworks/base/core/jni/
H A Dcom_android_internal_os_KernelCpuUidBpfMapReader.cpp65 static uint64_t lastUpdate = 0; in KernelCpuUidFreqTimeBpfMapReader_readBpfData() local
66 uint64_t newLastUpdate = lastUpdate; in KernelCpuUidFreqTimeBpfMapReader_readBpfData()
81 lastUpdate = newLastUpdate; in KernelCpuUidFreqTimeBpfMapReader_readBpfData()
91 static uint64_t lastUpdate = 0; in KernelCpuUidActiveTimeBpfMapReader_readBpfData() local
92 uint64_t newLastUpdate = lastUpdate; in KernelCpuUidActiveTimeBpfMapReader_readBpfData()
106 lastUpdate = newLastUpdate; in KernelCpuUidActiveTimeBpfMapReader_readBpfData()
124 static uint64_t lastUpdate = 0; in KernelCpuUidClusterTimeBpfMapReader_readBpfData() local
125 uint64_t newLastUpdate = lastUpdate; in KernelCpuUidClusterTimeBpfMapReader_readBpfData()
140 lastUpdate = newLastUpdate; in KernelCpuUidClusterTimeBpfMapReader_readBpfData()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/external/
H A DTileServiceManager.java165 public void setLastUpdate(long lastUpdate) { in setLastUpdate() argument
166 mLastUpdate = lastUpdate; in setLastUpdate()
/aosp14/frameworks/base/core/tests/coretests/src/android/animation/
H A DValueAnimatorTests.java370 final long[] lastUpdate = new long[1]; in testResume()
386 lastUpdate[0] = l1.lastUpdateTime; in testResume()
397 assertEquals(lastUpdate[0], l1.lastUpdateTime); in testResume()
407 assertTrue(l1.lastUpdateTime > lastUpdate[0]); in testResume()
408 lastUpdate[0] = l1.lastUpdateTime; in testResume()
/aosp14/frameworks/base/packages/Shell/src/com/android/shell/
H A DBugreportProgressService.java1977 final AtomicLong lastUpdate = new AtomicLong(System.currentTimeMillis()); field in BugreportProgressService.BugreportInfo
2215 Long.toString(lastUpdate.longValue()) : formattedLastUpdate; in getFormattedLastUpdate()
2217 return DateUtils.formatDateTime(context, lastUpdate.longValue(), in getFormattedLastUpdate()
2265 lastUpdate.set(in.readLong()); in BugreportInfo()
2294 dest.writeLong(lastUpdate.longValue()); in writeToParcel()
2353 info.lastUpdate.set(System.currentTimeMillis()); in checkProgressUpdatedLocked()