Home | History | Annotate | Download | only in server

Lines Matching defs:mCachedQuotaBlocks

103     private int mCachedQuotaBlocks = 0;  // Space we can use: computed from free space, etc.
867 mCachedQuotaBlocks = Math.min(maximum, Math.max(0, nonreserved * quotaPercent / 100));
885 if (mAllFiles.blocks > mCachedQuotaBlocks) {
890 if (squeezed > 0 && tag.blocks <= (mCachedQuotaBlocks - unsqueezed) / squeezed) {
896 int tagQuota = (mCachedQuotaBlocks - unsqueezed) / squeezed;
900 if (mAllFiles.blocks < mCachedQuotaBlocks) break;
916 return mCachedQuotaBlocks * mBlockSize;