Home
last modified time | relevance | path

Searched defs:entry (Results 1 – 6 of 6) sorted by relevance

/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
DFatLfnDirectory.java93 FatFile getFile(FatDirectoryEntry entry) throws IOException { in getFile()
104 FatLfnDirectory getDirectory(FatDirectoryEntry entry) throws IOException { in getDirectory()
136 final FatLfnDirectoryEntry entry = in addFile() local
142 longNameIndex.put(name.toLowerCase(), entry); in addFile() local
230 final FatLfnDirectoryEntry entry = longNameIndex.get(name); in getEntry() local
352 final FatLfnDirectoryEntry entry = getEntry(name); in remove() local
373 void unlinkEntry(FatLfnDirectoryEntry entry) { in unlinkEntry()
402 void linkEntry(FatLfnDirectoryEntry entry) throws IOException { in linkEntry()
408 this.longNameIndex.put(entry.getName().toLowerCase(), entry); in linkEntry() local
409 this.shortNameIndex.put(entry.realEntry.getShortName(), entry); in linkEntry() local
[all …]
DFatType.java51 void writeEntry(byte[] data, int index, long entry) { in writeEntry()
78 void writeEntry(byte[] data, int index, long entry) { in writeEntry()
101 void writeEntry(byte[] data, int index, long entry) { in writeEntry()
134 abstract void writeEntry(byte[] data, int index, long entry); in writeEntry()
155 boolean isReservedCluster(long entry) { in isReservedCluster()
159 boolean isEofCluster(long entry) { in isEofCluster()
DFatFile.java36 private final FatDirectoryEntry entry; field in FatFile
46 static FatFile get(Fat fat, FatDirectoryEntry entry) in get()
DFat.java262 long entry = entries[(int) cluster]; in getNextCluster() local
425 protected boolean isFreeCluster(long entry) { in isFreeCluster()
436 protected boolean isReservedCluster(long entry) { in isReservedCluster()
446 protected boolean isEofCluster(long entry) { in isEofCluster()
DAbstractDirectory.java218 final FatDirectoryEntry entry = entries.get(i); in flush() local
288 public void removeEntry(FatDirectoryEntry entry) throws IOException { in removeEntry()
313 final FatDirectoryEntry entry = FatDirectoryEntry.create(true); in createSub() local
DFatLfnDirectoryEntry.java87 FatDirectoryEntry entry = dir.dir.getEntry(i + offset); in extract() local