Home
last modified time | relevance | path

Searched refs:runtimeMillis (Results 1 – 7 of 7) sorted by relevance

/aosp12/packages/services/Car/car-lib/src/android/car/storagemonitoring/
H A DIoStatsEntry.java67 public final long runtimeMillis; field in IoStatsEntry
82 this.runtimeMillis = runtimeMillis; in IoStatsEntry()
89 runtimeMillis = in.readLong(); in IoStatsEntry()
94 public IoStatsEntry(UidIoRecord record, long runtimeMillis) { in IoStatsEntry() argument
96 this.runtimeMillis = runtimeMillis; in IoStatsEntry()
117 dest.writeLong(runtimeMillis); in writeToParcel()
128 jsonWriter.name("runtimeMillis").value(runtimeMillis); in writeToJson()
139 runtimeMillis = in.getLong("runtimeMillis"); in IoStatsEntry()
158 runtimeMillis - other.runtimeMillis, in delta()
168 && runtimeMillis == uidIoStatEntry.runtimeMillis in equals()
[all …]
/aosp12/packages/services/Car/tests/carservice_unit_test/src/com/android/car/storagemonitoring/
H A DIoStatsTrackerTest.java130 assertEquals(2 * SAMPLE_WINDOW_MS, sample0.runtimeMillis); in testUpdateNoIoProcessActive()
131 assertEquals(2 * SAMPLE_WINDOW_MS, total0.runtimeMillis); in testUpdateNoIoProcessActive()
157 assertEquals(SAMPLE_WINDOW_MS, total0.runtimeMillis); in testUpdateNoIoProcessInactive()
184 assertEquals(2 * SAMPLE_WINDOW_MS, total0.runtimeMillis); in testUpdateIoHappens()
185 assertEquals(2 * SAMPLE_WINDOW_MS, sample0.runtimeMillis); in testUpdateIoHappens()
213 assertEquals(2 * SAMPLE_WINDOW_MS, sample0.runtimeMillis); in testUpdateGoAwayComeBackProcess()
241 assertEquals(2 * SAMPLE_WINDOW_MS, sample0.runtimeMillis); in testUpdateGoAwayComeBackIo()
H A DCarStorageMonitoringTest.java371 assertThat(entry.runtimeMillis).isEqualTo(1234); in testUidIoStatEntry()
386 assertThat(entry.runtimeMillis).isEqualTo(4321); in testUidIoStatEntry()
504 assertThat(delta21.runtimeMillis).isEqualTo(1000); in testUidIoStatEntryDelta()
/aosp12/packages/services/Car/service/src/com/android/car/storagemonitoring/
H A DIoStatsTracker.java98 oldRecord.runtimeMillis + mSampleWindowMs); in update()
106 oldRecord.runtimeMillis + mSampleWindowMs); in update()
112 newTotal.append(uid, new IoStatsEntry(newRecord, newStats.runtimeMillis)); in update()
/aosp12/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/storagelifetime/
H A DStorageLifetimeFragment.java84 uidIoStats.runtimeMillis,
/aosp12/packages/services/Car/car-lib/api/
H A Dsystem-current.txt1190 field public final long runtimeMillis;
/aosp12/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java8303 long runtimeMillis = SystemClock.elapsedRealtime() - process.getStartTime(); in addErrorToDropBox() local
8304 sb.append("Process-Runtime: ").append(runtimeMillis).append("\n"); in addErrorToDropBox()