Home
last modified time | relevance | path

Searched refs:mStatFs (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/services/core/java/com/android/server/
DDropBoxManagerService.java114 private StatFs mStatFs = null; field in DropBoxManagerService
960 if (mStatFs == null) { in init()
965 mStatFs = new StatFs(mDropBoxDir.getPath()); in init()
966 mBlockSize = mStatFs.getBlockSize(); in init()
1102 mStatFs.restat(dirPath); in trimToFit()
1106 long available = mStatFs.getAvailableBlocksLong(); in trimToFit()
1107 long nonreserved = available - mStatFs.getBlockCountLong() * reservePercent / 100; in trimToFit()