Searched refs:DataDescriptorType (Results 1 – 4 of 4) sorted by relevance
/tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/zip/ |
D | StoredEntry.java | 187 private DataDescriptorType dataDescriptorType; 286 dataDescriptorType = DataDescriptorType.NO_DATA_DESCRIPTOR; in StoredEntry() 504 byte[] ddData = new byte[DataDescriptorType.DATA_DESCRIPTOR_WITH_SIGNATURE.size]; in readDataDescriptorRecord() 513 dataDescriptorType = DataDescriptorType.DATA_DESCRIPTOR_WITH_SIGNATURE; in readDataDescriptorRecord() 515 dataDescriptorType = DataDescriptorType.DATA_DESCRIPTOR_WITHOUT_SIGNATURE; in readDataDescriptorRecord() 673 public DataDescriptorType getDataDescriptorType() { in getDataDescriptorType() 684 if (dataDescriptorType == DataDescriptorType.NO_DATA_DESCRIPTOR) { in removeDataDescriptor() 688 dataDescriptorType = DataDescriptorType.NO_DATA_DESCRIPTOR; in removeDataDescriptor()
|
D | DataDescriptorType.java | 29 public enum DataDescriptorType { enum 55 DataDescriptorType(int size) { in DataDescriptorType() method in DataDescriptorType
|
D | ZFile.java | 1327 == DataDescriptorType. NO_DATA_DESCRIPTOR, "Cannot write entries with a data " in writeEntry() 1860 DataDescriptorType.NO_DATA_DESCRIPTOR, "newEntry has data descriptor"); in addToEntries()
|
/tools/apkzlib/src/test/java/com/android/tools/build/apkzlib/zip/ |
D | ZFileTest.java | 1551 assertNotSame(DataDescriptorType.NO_DATA_DESCRIPTOR, a.getDataDescriptorType()); in sortZipContentsWithDeferredCrc32() 1554 assertNotSame(DataDescriptorType.NO_DATA_DESCRIPTOR, b.getDataDescriptorType()); in sortZipContentsWithDeferredCrc32() 1564 assertSame(DataDescriptorType.NO_DATA_DESCRIPTOR, a.getDataDescriptorType()); in sortZipContentsWithDeferredCrc32() 1567 assertSame(DataDescriptorType.NO_DATA_DESCRIPTOR, b.getDataDescriptorType()); in sortZipContentsWithDeferredCrc32() 1622 assertNotSame(DataDescriptorType.NO_DATA_DESCRIPTOR, x.getDataDescriptorType()); 1625 assertNotSame(DataDescriptorType.NO_DATA_DESCRIPTOR, y.getDataDescriptorType()); 1628 assertSame(DataDescriptorType.NO_DATA_DESCRIPTOR, z.getDataDescriptorType()); 1635 assertSame(DataDescriptorType.NO_DATA_DESCRIPTOR, x.getDataDescriptorType()); 1638 assertSame(DataDescriptorType.NO_DATA_DESCRIPTOR, y.getDataDescriptorType()); 1641 assertSame(DataDescriptorType.NO_DATA_DESCRIPTOR, z.getDataDescriptorType()); [all …]
|