Home
last modified time | relevance | path

Searched defs:read (Results 1 – 15 of 15) sorted by relevance

/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
DFat16RootDirectory.java53 public static Fat16RootDirectory read( in read() method in Fat16RootDirectory
79 protected void read(ByteBuffer data) throws IOException { in read() method in Fat16RootDirectory
DAbstractDirectory.java77 protected abstract void read(ByteBuffer data) throws IOException; in read() method in AbstractDirectory
244 protected final void read() throws IOException { in read() method in AbstractDirectory
DFsInfoSector.java61 public static FsInfoSector read(Fat32BootSector bs) throws IOException { in read() method in FsInfoSector
DFatFile.java111 public void read(long offset, ByteBuffer dest) throws IOException { in read() method in FatFile
DClusterChainDirectory.java87 protected final void read(ByteBuffer data) throws IOException { in read() method in ClusterChainDirectory
DFat.java61 public static Fat read(BootSector bs, int fatNr) in read() method in Fat
177 private void read() throws IOException { in read() method in Fat
DSector.java56 protected void read() throws IOException { in read() method in Sector
DFatFileSystem.java120 public static FatFileSystem read(BlockDevice device, boolean readOnly) in read() method in FatFileSystem
DFatLfnDirectory.java421 private static ClusterChainDirectory read(FatDirectoryEntry entry, Fat fat) in read() method
DBootSector.java74 public static BootSector read(BlockDevice device) throws IOException { in read() method in BootSector
DFatDirectoryEntry.java94 public static FatDirectoryEntry read(ByteBuffer buff, boolean readOnly) { in read() method in FatDirectoryEntry
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/util/
DRamDisk.java60 int read = zis.read(buffer); in readGzipped() local
116 public void read(long devOffset, ByteBuffer dest) throws IOException { in read() method in RamDisk
DFileDisk.java110 public void read(long devOffset, ByteBuffer dest) throws IOException { in read() method in FileDisk
118 final int read = fc.read(dest, devOffset); in read() local
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/
DFsFile.java62 public void read(long offset, ByteBuffer dest) throws IOException; in read() method
DBlockDevice.java48 public abstract void read(long devOffset, ByteBuffer dest) in read() method