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

/frameworks/base/services/core/java/com/android/server/
H A DDropBoxManagerService.java93 private StatFs mStatFs = null; field in class:DropBoxManagerService
631 if (mStatFs == null) {
636 mStatFs = new StatFs(mDropBoxDir.getPath());
637 mBlockSize = mStatFs.getBlockSize();
771 mStatFs.restat(mDropBoxDir.getPath());
772 int available = mStatFs.getAvailableBlocks();
773 int nonreserved = available - mStatFs.getBlockCount() * reservePercent / 100;

Completed in 226 milliseconds