Home
last modified time | relevance | path

Searched refs:mLastTimeComponentUsed (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/core/java/android/app/usage/
DUsageStats.java122 public long mLastTimeComponentUsed; field in UsageStats
182 mLastTimeComponentUsed = stats.mLastTimeComponentUsed; in UsageStats()
292 return mLastTimeComponentUsed; in getLastTimeAnyComponentUsed()
303 Math.max(mLastTimeForegroundServiceUsed, mLastTimeComponentUsed))); in getLastTimePackageUsed()
365 mLastTimeComponentUsed = Math.max(mLastTimeComponentUsed, right.mLastTimeComponentUsed); in add()
642 mLastTimeComponentUsed = timeStamp; in update()
666 dest.writeLong(mLastTimeComponentUsed); in writeToParcel()
721 stats.mLastTimeComponentUsed = in.readLong();
/frameworks/base/core/tests/coretests/src/android/app/usage/
DUsageStatsTest.java141 left.mLastTimeComponentUsed = 200000; in testParcelable()
553 assertEquals(left.mLastTimeComponentUsed, 200000);
556 assertEquals(left.mLastTimeComponentUsed, 300000);
604 assertEquals(us1.mLastTimeComponentUsed, us2.mLastTimeComponentUsed);
/frameworks/base/services/usage/java/com/android/server/usage/
DUsageStatsProto.java151 stats.mLastTimeComponentUsed = statsOut.beginTime + proto.readLong( in loadUsageStats()
354 usageStats.mLastTimeComponentUsed, stats.beginTime); in writeUsageStats()
DUsageStatsProtoV2.java100 stats.mLastTimeComponentUsed = beginTime + proto.readLong( in parseUsageStats()
336 stats.mLastTimeComponentUsed, beginTime); in writeUsageStats()
DUserUsageStatsService.java1221 formatDateTime(usageStats.mLastTimeComponentUsed, prettyDates)); in printIntervalStats()
/frameworks/base/services/tests/servicestests/src/com/android/server/usage/
DUsageStatsDatabaseTest.java279 assertEquals(us1.mLastTimeComponentUsed, us2.mLastTimeComponentUsed); in compareUsageStats()