Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/app/usage/
DUsageStats.java65 public int mAppLaunchCount; field in UsageStats
90 mAppLaunchCount = stats.mAppLaunchCount; in UsageStats()
153 return mAppLaunchCount; in getAppLaunchCount()
181 mAppLaunchCount += right.mAppLaunchCount; in add()
217 dest.writeInt(mAppLaunchCount); in writeToParcel()
246 stats.mAppLaunchCount = in.readInt();
/frameworks/base/services/usage/java/com/android/server/usage/
DUsageStatsXmlV1.java90 stats.mAppLaunchCount = XmlUtils.readIntAttribute(parser, APP_LAUNCH_COUNT_ATTR, 0); in loadUsageStats()
211 if (usageStats.mAppLaunchCount > 0) { in writeUsageStats()
212 XmlUtils.writeIntAttribute(xml, APP_LAUNCH_COUNT_ATTR, usageStats.mAppLaunchCount); in writeUsageStats()
DIntervalStats.java217 usageStats.mAppLaunchCount += 1; in incrementAppLaunchCount()
DUserUsageStatsService.java702 pw.printPair("appLaunchCount", usageStats.mAppLaunchCount); in printIntervalStats()