HomeSort by relevance Sort by last modified time
    Searched refs:fat (Results 26 - 50 of 75) sorted by null

12 3

  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
Sector.java 19 package de.waldheinz.fs.fat;
Fat16BootSector.java 19 package de.waldheinz.fs.fat;
57 * The offset to the sectors per FAT value.
75 * Offset to the FAT file system type string.
136 * Gets the number of sectors/fat for FAT 12/16.
146 * Sets the number of sectors/fat
148 * @param v the new number of sectors per fat
Fat32BootSector.java 19 package de.waldheinz.fs.fat;
38 * The offset to the 4 bytes specifying the sectors per FAT value.
71 * Returns the first cluster in the FAT that contains the root directory.
FsInfoSector.java 19 package de.waldheinz.fs.fat;
102 * @see Fat#getFreeClusterCount()
115 * @see Fat#getFreeClusterCount()
122 * Sets the last allocated cluster that was used in the {@link Fat}.
124 * @param value the FAT's last allocated cluster number
125 * @see Fat#getLastAllocatedCluster()
134 * Returns the last allocated cluster number of the {@link Fat} of the
138 * @see Fat#getLastAllocatedCluster()
160 setLastAllocatedCluster(Fat.FIRST_CLUSTER);
AbstractDirectory.java 20 package de.waldheinz.fs.fat;
309 public FatDirectoryEntry createSub(Fat fat) throws IOException {
310 final ClusterChain chain = new ClusterChain(fat, false);
FatType.java 20 package de.waldheinz.fs.fat;
24 * FAT flavours.
146 * Returns the human-readable FAT name string as written to the
149 * @return the boot sector label for this FAT type
BootSector.java 20 package de.waldheinz.fs.fat;
124 * Gets the number of sectors per FAT.
126 * @return the sectors per FAT
131 * Sets the number of sectors/fat
133 * @param v the new number of sectors per fat
Fat.java 20 package de.waldheinz.fs.fat;
33 public final class Fat {
36 * The first cluster that really holds user data in a FAT.
52 * Reads a {@code Fat} as specified by a {@code BootSector}.
54 * @param bs the boot sector specifying the {@code Fat} layout
55 * @param fatNr the number of the {@code Fat} to read
56 * @return the {@code Fat} that was read
61 public static Fat read(BootSector bs, int fatNr)
67 " FATs when reading FAT #" + fatNr);
71 final Fat result = new Fat(bs, fatOffset)
    [all...]
FatDirectoryEntry.java 20 package de.waldheinz.fs.fat;
34 * The size in bytes of an FAT directory entry.
115 * Decides if this entry is a "volume label" entry according to the FAT
FatLfnDirectoryEntry.java 20 package de.waldheinz.fs.fat;
29 * {@link FsDirectoryEntry} interface for FAT file systems, it allows access
33 * {@link #setSystemFlag(boolean) system} flags specifed for the FAT file
98 * Returns if this directory entry has the FAT "hidden" flag set.
122 * Returns if this directory entry has the FAT "system" flag set.
146 * Returns if this directory entry has the FAT "read-only" flag set. This
159 * specified by the FAT file system, which is essentially ignored by the
174 * Returns if this directory entry has the FAT "archive" flag set.
ShortName.java 19 package de.waldheinz.fs.fat;
32 * These are taken from the FAT specification.
40 * The name of the "current directory" (".") entry of a FAT directory.
45 * The name of the "parent directory" ("..") entry of a FAT directory.
239 * according to the FAT specification.
  /external/google-breakpad/src/common/mac/
macho_reader_unittest.cc 199 : fat(kBigEndian),
205 // here, start, and Mark are file offsets in 'fat'.
206 fat.start() = 0;
208 // Append a 'fat_arch' entry to 'fat', with the given field values.
211 fat
218 // Append |n| dummy 'fat_arch' entries to 'fat'. The cpu type and
225 ASSERT_TRUE(fat.GetContents(&contents));
234 test_assembler::Section fat;
247 fat
256 fat
232 test_assembler::Section fat; member in struct:FatReaderFixture
    [all...]
macho_reader.h 40 #include <mach-o/fat.h>
69 // A parser for fat binary files, used to store universal binaries.
70 // When applied to a (non-fat) Mach-O file, this behaves as if the
71 // file were a fat file containing a single object file.
75 // A class for reporting errors found while parsing fat binary files. The
84 // The data does not begin with a fat binary or Mach-O magic number.
88 // The Mach-O fat binary file ends abruptly, without enough space
102 // Create a fat binary file reader that uses |reporter| to report problems.
105 // Read the |size| bytes at |buffer| as a fat binary file. On success,
109 // If the data is a plain Mach-O file, rather than a fat binary file
    [all...]
  /sdk/emulator/mksdcard/src/source/
mksdcard.c 62 static Byte s_fat_head [ BYTES_PER_SECTOR ]; /* first FAT sector */
130 POKES( boot + 0xe, RESERVED_SECTORS ); /* reserved sectors before first FAT */
135 POKES( boot + 0x16, 0 ); /* Sectors per FAT for FAT12/16, 0 for FAT32 */
142 POKEW( boot + 0x24, sectors_per_fat ); /* Sectors per FAT */
143 POKES( boot + 0x28, 0 ); /* FAT flags */
152 memcpy( boot + 0x52, "FAT32 ", 8 ); /* FAT system type, padded with 0x20 */
168 fat_init( Bytes fat )
170 POKEW( fat, 0x0ffffff8 ); /* reserve cluster 1, media id in low byte */
171 POKEW( fat + 4, 0x0fffffff ); /* reserve cluster 2 */
172 POKEW( fat + 8, 0x0fffffff ); /* end of clust chain for root dir *
    [all...]
  /external/compiler-rt/make/
AppleBI.mk 74 # Rule to make fat dylib
95 # Rule to make fat archive
127 # Rule to make fat dylib
  /toolchain/binutils/binutils-2.25/bfd/
mach-o-target.c 92 #error Mach-O fat files must always be big-endian.
  /external/google-breakpad/src/client/mac/handler/
breakpad_nlist_64.cc 74 #include <mach-o/fat.h>
200 /* Deal with fat file if necessary */
205 /* Read in the fat header */
217 /* Read in the fat archs */
  /external/valgrind/coregrind/
launcher-darwin.c 49 #include <mach-o/fat.h>
172 // If it's fat, look for a good arch.
178 // If only one fat arch, use it.
183 // Scan fat headers for default arch.
188 // Scan fat headers for any supported arch.
302 This is the preferred arch from fat files and the fallback. */
fixup_macho_loadcmds.c 117 #include <mach-o/fat.h>
168 fat headers, kitchen sink, whatnot: the entire file. The
188 is in general a so-called fat header. The Mach-O object we're
192 /* But we can say that either it's a fat object, in which case it
193 begins with a fat header, or it's unadorned Mach-O, in which
230 /* Map a given fat or thin object aboard, find the thin part if
231 necessary, do some checks, and write details of both the fat and
275 // these if it turns out to be fat.
279 // Check for fat header.
283 // Fat header is always BIG-ENDIA
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/allegrocl/
allegrocl.swg 214 :external-format #+little-endian :fat-le #-little-endian :fat)\n
220 :external-format #+little-endian :fat-le #-little-endian :fat))";
308 (excl:find-external-format :fat)
309 (excl:find-external-format :fat-le)
  /prebuilts/devtools/tools/lib/
jobb.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/jobb/24.4.0-beta3/
jobb-24.4.0-beta3.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/jobb/24.4.0-beta6/
jobb-24.4.0-beta6.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/jobb/24.5.0/
jobb-24.5.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/jobb/25.0.0/
jobb-25.0.0.jar 

Completed in 1233 milliseconds

12 3