Home | History | Annotate | Download | only in server

Lines Matching defs:mStatFs

101     private StatFs mStatFs = null;
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;