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

/frameworks/base/services/core/java/com/android/server/
H A DDropBoxManagerService.java95 private int mCachedQuotaBlocks = 0; // Space we can use: computed from free space, etc. field in class:DropBoxManagerService
775 mCachedQuotaBlocks = Math.min(maximum, Math.max(0, nonreserved * quotaPercent / 100));
793 if (mAllFiles.blocks > mCachedQuotaBlocks) {
798 if (squeezed > 0 && tag.blocks <= (mCachedQuotaBlocks - unsqueezed) / squeezed) {
804 int tagQuota = (mCachedQuotaBlocks - unsqueezed) / squeezed;
808 if (mAllFiles.blocks < mCachedQuotaBlocks) break;
824 return mCachedQuotaBlocks * mBlockSize;

Completed in 146 milliseconds