Searched refs:cacheTotal (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/services/usage/java/com/android/server/usage/
H A DStorageStatsService.java199 final long cacheTotal = getCacheBytes(volumeUuid, callingPackage);
201 final long cacheClearable = Math.max(0, cacheTotal - cacheReserved);
/frameworks/native/cmds/installd/
H A DInstalldNativeService.cpp996 int64_t cacheTotal = 0; local
1005 cacheTotal += it.second->cacheUsed;
1023 if (cacheReservedBytes > 0 && cleared >= (cacheTotal - cacheReservedBytes)) {
/frameworks/base/services/core/java/com/android/server/
H A DStorageManagerService.java3321 final long cacheTotal = stats.getCacheBytes(volumeUuid);
3323 final long cacheClearable = Math.max(0, cacheTotal - cacheReserved);
3326 return Math.max(0, (usable + cacheTotal) - fullReserved);

Completed in 2893 milliseconds