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

/frameworks/base/tests/LowStorageTest/src/com/android/lowstoragetest/
H A DLowStorageTest.java41 private int mBlockSize = 0; field in class:LowStorageTest
54 mBlockSize = (int) (stat.getBlockSize());
56 startSizeTextView.setText(Long.toString((totalBlocks * mBlockSize) / BYTE_SIZE));
86 byte buf[] = new byte[mBlockSize * NO_OF_BLOCKS_TO_FILL];
92 byte buf[] = new byte[(noOfBlockToFill % NO_OF_BLOCKS_TO_FILL) * mBlockSize];
125 freeSizeTextView.setText(Long.toString((availableBlocks * mBlockSize) / BYTE_SIZE));
/frameworks/base/services/java/com/android/server/
H A DDropBoxManagerService.java92 private int mBlockSize = 0; field in class:DropBoxManagerService
190 byte[] buffer = new byte[mBlockSize];
207 int bufferSize = mBlockSize;
586 mBlockSize = mStatFs.getBlockSize();
607 EntryFile entry = new EntryFile(file, mBlockSize);
669 late.file, mDropBoxDir, late.tag, t++, late.flags, mBlockSize));
679 enrollEntry(new EntryFile(temp, mDropBoxDir, tag, t, flags, mBlockSize));
723 int maximum = quotaKb * 1024 / mBlockSize;
773 return mCachedQuotaBlocks * mBlockSize;

Completed in 84 milliseconds