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

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

Completed in 113 milliseconds