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

/frameworks/base/services/core/java/com/android/server/
H A DDropBoxManagerService.java101 private StatFs mStatFs = null; field in class:DropBoxManagerService
718 if (mStatFs == null) {
723 mStatFs = new StatFs(mDropBoxDir.getPath());
724 mBlockSize = mStatFs.getBlockSize();
860 mStatFs.restat(dirPath);
864 int available = mStatFs.getAvailableBlocks();
865 int nonreserved = available - mStatFs.getBlockCount() * reservePercent / 100;

Completed in 50 milliseconds