Home
last modified time | relevance | path

Searched refs:getSize (Results 1 – 9 of 9) sorted by relevance

/tools/external/fat32lib/src/main/java/de/waldheinz/fs/util/
DRamDisk.java110 public long getSize() { in getSize() method in RamDisk
119 if (devOffset > getSize()){ in read()
122 sb.append(" is off size (").append(getSize()).append(")"); in read()
137 if (devOffset + src.remaining() > getSize()) throw new in write()
141 ", size=" + getSize()); in write()
DFileDisk.java103 public long getSize() throws IOException { in getSize() method in FileDisk
114 if ((devOffset + toRead) > getSize()) throw new IOException( in read()
133 if ((devOffset + toWrite) > getSize()) throw new IOException( in write()
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
DAbstractDirectory.java178 public int getSize() { in getSize() method in AbstractDirectory
271 if (getSize() == getCapacity()) { in addEntry()
281 if (getSize() + entries.length > getCapacity()) { in addEntries()
282 changeSize(getSize() + entries.length); in addEntries()
292 changeSize(getSize()); in removeEntry()
367 changeSize(getSize() - 1); in setLabel()
375 changeSize(getSize() + 1); in setLabel()
DSuperFloppyFormatter.java190 final int totalSectors = (int)(device.getSize() / sectorSize); in format()
295 return fatTypeFromSize(device.getSize()); in fatTypeFromDevice()
396 final long sectors = device.getSize() / device.getSectorSize(); in sectorsPerCluster32()
401 return sectorsPerCluster32FromSize(device.getSize(), device.getSectorSize()); in sectorsPerCluster32()
430 long size = device.getSize(); in sectorsPerCluster16()
436 long size = device.getSize(); in defaultSectorsPerCluster()
DBootSector.java155 setSectorCount(getDevice().getSize() / getDevice().getSectorSize()); in init()
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/
DBlockDevice.java39 public abstract long getSize() throws IOException; in getSize() method
/tools/apksig/src/main/java/com/android/apksig/internal/zip/
DLocalFileRecord.java107 public long getSize() { in getSize() method in LocalFileRecord
300 long size = getSize(); in outputRecord()
326 long remainingRecordSize = getSize() - mDataStartOffset; in outputRecordWithModifiedExtra()
DCentralDirectoryRecord.java82 public int getSize() { in getSize() method in CentralDirectoryRecord
/tools/apksig/src/main/java/com/android/apksig/
DApkSigner.java320 inputOffset += inputLocalFileRecord.getSize(); in sign()
446 outputCentralDirSizeBytes += record.getSize(); in sign()