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

/frameworks/base/services/java/com/android/server/
H A DDeviceStorageMonitorService.java113 private long mMemLowThreshold; field in class:DeviceStorageMonitorService
243 if (mFreeMem < mMemLowThreshold) {
254 >= ((mMemLowThreshold-mMemCacheStartTrimThreshold)/4)) {
337 mMemLowThreshold = sm.getStorageLowBytes(DATA_PATH);
340 mMemCacheStartTrimThreshold = ((mMemLowThreshold*3)+mMemFullThreshold)/4;
341 mMemCacheTrimToThreshold = mMemLowThreshold
342 + ((mMemLowThreshold-mMemCacheStartTrimThreshold)*2);
432 return mMemLowThreshold;
482 pw.print(" mMemLowThreshold=");
483 pw.print(Formatter.formatFileSize(mContext, mMemLowThreshold));
[all...]

Completed in 95 milliseconds