Home
last modified time | relevance | path

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

/aosp14/frameworks/base/services/core/java/com/android/server/
H A DDropBoxManagerService.java132 private StatFs mStatFs = null; field in DropBoxManagerService
1043 if (mStatFs == null) { in init()
1048 mStatFs = new StatFs(mDropBoxDir.getPath()); in init()
1049 mBlockSize = mStatFs.getBlockSize(); in init()
1191 mStatFs.restat(dirPath); in trimToFit()
1195 long available = mStatFs.getAvailableBlocksLong(); in trimToFit()
1196 long nonreserved = available - mStatFs.getBlockCountLong() * reservePercent / 100; in trimToFit()