Searched refs:compressedSize (Results 1 - 6 of 6) sorted by relevance

/dalvik/libcore/archive/src/main/java/java/util/zip/
H A DZipEntry.java43 long compressedSize = -1, crc = -1, size = -1; field in class:ZipEntry
98 return compressedSize;
198 compressedSize = value;
311 compressedSize = ze.compressedSize;
375 compressedSize = (hdrBuf[20] & 0xff) | ((hdrBuf[21] & 0xff) << 8)
H A DZipOutputStream.java140 writeLong(out, currentEntry.compressedSize = def.getTotalOut());
255 if (ze.size == -1 && ze.compressedSize == -1) {
259 if (ze.size != ze.compressedSize && ze.compressedSize != -1
299 currentEntry.size = currentEntry.compressedSize;
300 } else if (currentEntry.compressedSize == -1) {
301 currentEntry.compressedSize = currentEntry.size;
H A DZipInputStream.java184 currentEntry.compressedSize = getLong(hdrBuf, EXTSIZ);
190 if (currentEntry.compressedSize != inB || currentEntry.size != out) {
H A DZipFile.java248 rafstrm.mLength = rafstrm.mOffset + entry.compressedSize;
/dalvik/libcore/archive/src/main/native/
H A Dzipsup.h107 U_32 compressedSize; member in struct:HyZipDataDescriptor
122 U_32 compressedSize; member in struct:HyZipEntry
H A Dzipsup.c429 (IDATA) (zipEntry->dataPointer + zipEntry->compressedSize))
433 zipEntry->dataPointer + zipEntry->compressedSize,
444 blockPointer = dataSize = zipEntry->compressedSize;
532 (void) ZIP_NEXT_U32 (zipEntry->compressedSize, current);
537 if (dataSize - 3 == zipEntry->compressedSize)
705 (void) ZIP_NEXT_U32 (entry.compressedSize, current);
774 /* Either local header doesn't know the compressedSize, or this entry has a file
977 (void) ZIP_NEXT_U32 (zipEntry->compressedSize, current);
1694 result = hyfile_read (zipFile->fd, dataBuffer, entry->compressedSize);
1695 if (result != (I_32) entry->compressedSize)
[all...]

Completed in 146 milliseconds