Home
last modified time | relevance | path

Searched refs:appSize (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/services/tests/servicestests/src/com/android/server/storage/
DDiskStatsFileLoggerTest.java203 public long appSize; field in DiskStatsFileLoggerTest.AppSizeGrouping
206 public AppSizeGrouping(String packageName, long appSize, long cacheSize) { in AppSizeGrouping() argument
208 this.appSize = appSize; in AppSizeGrouping()
215 result = 37 * result + (int)(appSize ^ (appSize >>> 32)); in hashCode()
230 return packageName.equals(grouping.packageName) && appSize == grouping.appSize && in equals()
236 return packageName + " " + appSize + " " + cacheSize; in toString()
/frameworks/base/services/core/java/com/android/server/storage/
DDiskStatsFileLogger.java128 long appSize = stat.codeSize; in addAppsToJson() local
132 appSize += stat.externalCodeSize; in addAppsToJson()
136 appSizeSum += appSize; in addAppsToJson()
141 appSizeList.put(appSize); in addAppsToJson()
/frameworks/native/cmds/installd/
DInstalldNativeService.cpp2112 int64_t appSize = 0; in getExternalSize() local
2137 appSize = extStats.dataSize; in getExternalSize()
2176 appSize += size; in getExternalSize()
2197 ret.push_back(appSize); in getExternalSize()