Home
last modified time | relevance | path

Searched refs:FatFileSystem (Results 1 – 3 of 3) sorted by relevance

/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
DFatFileSystem.java40 public final class FatFileSystem extends AbstractFileSystem { class
50 FatFileSystem(BlockDevice api, boolean readOnly) throws IOException { in FatFileSystem() method in FatFileSystem
63 private FatFileSystem(BlockDevice device, boolean readOnly, in FatFileSystem() method in FatFileSystem
120 public static FatFileSystem read(BlockDevice device, boolean readOnly) in read()
123 return new FatFileSystem(device, readOnly); in read()
DSuperFloppyFormatter.java188 public FatFileSystem format() throws IOException { in format()
259 FatFileSystem fs = FatFileSystem.read(device, false); in format()
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/
DFileSystemFactory.java21 import de.waldheinz.fs.fat.FatFileSystem;
51 return FatFileSystem.read(device, readOnly); in create()