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

/frameworks/base/services/core/java/com/android/server/
H A DDropBoxManagerService.java92 private StatFs mStatFs = null; field in class:DropBoxManagerService
591 if (mStatFs == null) {
596 mStatFs = new StatFs(mDropBoxDir.getPath());
597 mBlockSize = mStatFs.getBlockSize();
731 mStatFs.restat(mDropBoxDir.getPath());
732 int available = mStatFs.getAvailableBlocks();
733 int nonreserved = available - mStatFs.getBlockCount() * reservePercent / 100;

Completed in 135 milliseconds