Home
last modified time | relevance | path

Searched refs:lastBenchMillis (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/core/java/android/os/storage/
DVolumeRecord.java55 public long lastBenchMillis; field in VolumeRecord
72 lastBenchMillis = parcel.readLong(); in VolumeRecord()
134 pw.printPair("lastBenchMillis", TimeUtils.formatForLogging(lastBenchMillis)); in dump()
193 parcel.writeLong(lastBenchMillis); in writeToParcel()
/frameworks/base/services/core/java/com/android/server/
DStorageManagerService.java539 final long benchAge = System.currentTimeMillis() - rec.lastBenchMillis; in shouldBenchmark()
2169 meta.lastBenchMillis = readLongAttribute(in, ATTR_LAST_BENCH_MILLIS, 0); in readVolumeRecord()
2183 writeLongAttribute(out, ATTR_LAST_BENCH_MILLIS, rec.lastBenchMillis); in writeVolumeRecord()
2348 rec.lastBenchMillis = System.currentTimeMillis(); in benchmark()