Home
last modified time | relevance | path

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

123

/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
/tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/zip/
DFileUseMap.java102 private void internalAdd(@Nonnull FileUseMapEntry<?> entry) { in internalAdd()
115 private void internalRemove(@Nonnull FileUseMapEntry<?> entry) { in internalRemove()
131 private void add(@Nonnull FileUseMapEntry<?> entry) { in add()
181 FileUseMapEntry<T> entry = FileUseMapEntry.makeUsed(start, end, store); local
193 private FileUseMapEntry<?> findContainer(@Nonnull FileUseMapEntry<?> entry) { in findContainer()
214 @Nonnull FileUseMapEntry<?> entry) { in split()
246 private void coalesce(@Nonnull FileUseMapEntry<?> entry) { in coalesce()
535 FileUseMapEntry<?> before(@Nonnull FileUseMapEntry<?> entry) { in before()
549 FileUseMapEntry<?> after(@Nonnull FileUseMapEntry<?> entry) { in after()
DZFileExtension.java129 public IOExceptionRunnable added(@Nonnull StoredEntry entry, @Nullable StoredEntry replaced) { in added()
143 public IOExceptionRunnable removed(@Nonnull StoredEntry entry) { in removed()
DZFile.java545 StoredEntry entry = mapEntry.getStore(); in entries() local
547 entries.put(entry.getCentralDirectoryHeader().getName(), entry); in entries() local
949 void delete(@Nonnull final StoredEntry entry, boolean notify) throws IOException { in delete()
1143 StoredEntry entry = toWriteToStore.get(fileUseMapEntry); in update() local
1235 private void reAdd(@Nonnull StoredEntry entry, @Nonnull PositionHint positionHint) in reAdd()
1259 void localHeaderChanged(@Nonnull StoredEntry entry, boolean resized) throws IOException { in localHeaderChanged()
1325 private void writeEntry(@Nonnull StoredEntry entry, long offset) throws IOException { in writeEntry()
1903 private FileUseMapEntry<StoredEntry> positionInFile( in positionInFile()
1942 private int chooseAlignment(@Nonnull StoredEntry entry) throws IOException { in chooseAlignment()
2120 boolean realign(@Nonnull StoredEntry entry) throws IOException { in realign()
[all …]
DCentralDirectory.java266 directory.entries.put(cdr.getName(), entry); in makeFromEntries() local
378 StoredEntry entry; in readEntry() local
/tools/tradefederation/core/common_util/com/android/tradefed/util/
DZipUtil2.java47 private static boolean applyUnixModeIfNecessary(ZipArchiveEntry entry, File localFile) in applyUnixModeIfNecessary()
66 private static boolean extractZipEntry(ZipFile zipFile, ZipArchiveEntry entry, File destFile) in extractZipEntry()
83 ZipArchiveEntry entry = entries.nextElement(); in extractZip() local
142 ZipArchiveEntry entry = zipFile.getEntry(filePath); in extractFileFromZip() local
159 ZipArchiveEntry entry = zipFile.getEntry(filePath); in extractFileFromZip() local
207 ZipArchiveEntry entry = entries.nextElement(); in restorePermissions() local
/tools/apkzlib/src/test/java/com/android/tools/build/apkzlib/zip/compress/
DMultiCompressorTest.java66 StoredEntry entry = zf.get("file"); in storeIsBest() local
85 StoredEntry entry = zf.get("file"); in sameCompressionResultButBetterThanStore() local
/tools/security/remote_provisioning/hwtrust/src/cbor/dice/
Dchain.rs30 let entry = Entry::verify_cbor_value(value, &root_public_key) in from_value() localVariable
74 let entry = Entry::verify_cbor_value(value, previous_public_key) in from_root_and_entries() localVariable
212 let entry = Entry::from_payload(&valid_payload(n, key)).unwrap(); in chain_from_cbor_valid() localVariable
227 let entry = Entry::from_payload(&valid_payload(n, key)).unwrap(); in chain_from_cbor_valid_with_mixed_key_types() localVariable
247 let entry = Entry::from_payload(&valid_payload(0, entry_pub_key)).unwrap(); in chain_from_cbor_root_key_integer_key_ops() localVariable
260 let entry = Entry::from_payload(&valid_payload(0, pub_key.clone())).unwrap(); in chain_form_from_cbor_valid_degenerate() localVariable
276 let entry = Entry::from_payload(&valid_payload(0, entry_pub_key)).unwrap(); in chain_form_from_cbor_degenerate_length_but_not_self_signed() localVariable
/tools/security/remote_provisioning/hwtrust/src/
Ddice.rs4 mod entry; module
/tools/security/remote_provisioning/hwtrust/src/cbor/
Ddice.rs9 mod entry; module
/tools/tradefederation/core/javatests/com/android/tradefed/testtype/suite/retry/
DResultsPlayerTest.java188 Entry<TestDescription, TestResult> entry = new SimpleEntry<>(test, result); in testReplay_oneTest() local
217 Entry<TestDescription, TestResult> entry = new SimpleEntry<>(test, result); in testReplay_MultiTest() local
/tools/carrier_settings/proto/
Dcarrier_list.proto59 repeated CarrierMap entry = 1; field
/tools/tradefederation/core/src/com/android/tradefed/cluster/
DSubprocessReportingHelper.java131 JarEntry entry = new JarEntry(path.substring(path.indexOf("com"))); in createJar() local
140 JarEntry entry = new JarEntry(String.format("config/%s", configName)); in createJar() local
/tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/sign/
DSigningExtension.java244 private void onZipEntryOutput(@Nonnull StoredEntry entry) throws IOException { in onZipEntryOutput()
311 ApkSignerEngine.OutputJarSignatureRequest.JarEntry entry = v1SignatureEntries.get(i); in onOutputZipReadyForUpdate() local
/tools/metalava/metalava/src/main/java/com/android/tools/metalava/apilevels/
DJarReaderUtils.kt40 var entry = zis.nextEntry in readJar() variable
DAddApisFromCodebase.kt83 val entry = in <lambda>() constant
/tools/security/fuzzing/orphans/libexif/
Dlibexif_fuzzer.cpp23 static void dump_value(ExifEntry *entry, void *) { in dump_value()
/tools/tradefederation/core/src/com/android/tradefed/service/management/
DDeviceManagementGrpcServer.java253 Entry<String, ReservationInformation> entry = getDeviceEntryFromReservation(reservationId); in releaseReservationInternal() local
300 Entry<String, ReservationInformation> entry = getDeviceEntryFromReservation(reservationId); in getDeviceFromReservation() local
/tools/tradefederation/core/src/com/android/tradefed/device/
DFileEntryWrapper.java41 FileEntryWrapper(NativeDevice testDevice, FileEntry entry) { in FileEntryWrapper()
/tools/tradefederation/core/test_framework/com/android/tradefed/targetprep/multi/
DMixImageZipPreparer.java363 final ZipEntry entry = entries.nextElement(); in getInputStreamFactoriesFromImageZip() local
453 private static void initStoredZipEntry(ZipEntry entry, InputStreamFactory factory) in initStoredZipEntry()
485 ZipEntry entry = new ZipEntry(factory.getKey()); in createZip() local
/tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/zfile/
DApkZFileCreator.java172 StoredEntry entry = zip.get(apkPath); in deleteFile() local

123