Searched defs:blockSize (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/services/java/com/android/server/
H A DDropBoxManagerService.java481 * @param blockSize to use for space accounting
485 int flags, int blockSize) throws IOException {
498 this.blocks = (int) ((this.file.length() + blockSize - 1) / blockSize);
520 * @param blockSize to use for space accounting
522 public EntryFile(File file, int blockSize) { argument
524 this.blocks = (int) ((this.file.length() + blockSize - 1) / blockSize);
484 EntryFile(File temp, File dir, String tag,long timestampMillis, int flags, int blockSize) argument
/frameworks/av/media/libstagefright/matroska/
H A DMatroskaExtractor.cpp904 size_t blockSize = 0; local
906 blockSize += iter.block()->GetFrame(i).len;
909 if (blockSize > maxBlockSize) {
910 maxBlockSize = blockSize;

Completed in 63 milliseconds