Searched refs:otherStats (Results 1 – 3 of 3) sorted by relevance
194 final PackageStats otherStats = (PackageStats) obj; in equals() local195 return ((TextUtils.equals(packageName, otherStats.packageName)) in equals()196 && userHandle == otherStats.userHandle in equals()197 && codeSize == otherStats.codeSize in equals()198 && dataSize == otherStats.dataSize in equals()199 && cacheSize == otherStats.cacheSize in equals()200 && externalCodeSize == otherStats.externalCodeSize in equals()201 && externalDataSize == otherStats.externalDataSize in equals()202 && externalCacheSize == otherStats.externalCacheSize in equals()203 && externalMediaSize == otherStats.externalMediaSize in equals()[all …]
344 private int[] otherStats = new int[(NUM_OTHER_STATS+NUM_DVK_STATS)*NUM_CATEGORIES]; field in Debug.MemoryInfo385 System.arraycopy(other.otherStats, 0, otherStats, 0, otherStats.length); in set()467 return otherStats[which * NUM_CATEGORIES + OFFSET_PSS]; in getOtherPss()472 return otherStats[which * NUM_CATEGORIES + OFFSET_SWAPPABLE_PSS]; in getOtherSwappablePss()477 return otherStats[which * NUM_CATEGORIES + OFFSET_RSS]; in getOtherRss()483 return otherStats[which * NUM_CATEGORIES + OFFSET_PRIVATE_DIRTY]; in getOtherPrivateDirty()489 return otherStats[which * NUM_CATEGORIES + OFFSET_SHARED_DIRTY]; in getOtherSharedDirty()494 return otherStats[which * NUM_CATEGORIES + OFFSET_PRIVATE_CLEAN]; in getOtherPrivateClean()505 return otherStats[which * NUM_CATEGORIES + OFFSET_SHARED_CLEAN]; in getOtherSharedClean()510 return otherStats[which * NUM_CATEGORIES + OFFSET_SWAPPED_OUT]; in getOtherSwappedOut()[all …]
134 PackageStats otherStats = new PackageStats("com.test.app"); in testMultipleUsersOneApp() local135 otherStats.userHandle = 1; in testMultipleUsersOneApp()141 assertThat(collector.getPackageStats(TIMEOUT)).containsExactly(stats, otherStats); in testMultipleUsersOneApp()