Home
last modified time | relevance | path

Searched refs:ZIP64_LOCHDR (Results 1 – 4 of 4) sorted by relevance

/libcore/ojluni/src/main/java/java/util/zip/
DZipConstants64.java41 static final int ZIP64_LOCHDR = 20; // ZIP64 end loc header size field in ZipConstants64
DZipFile.java1569 byte[] loc64 = new byte[ZIP64_LOCHDR]; in findEND()
1570 if (end.endpos < ZIP64_LOCHDR || in findEND()
1571 readFullyAt(loc64, 0, loc64.length, end.endpos - ZIP64_LOCHDR) in findEND()
/libcore/ojluni/src/main/native/
Dzip_util.h55 #define ZIP64_LOCHDR 20 // ZIP64 end loc header size macro
Dzip_util.c412 char loc64[ZIP64_LOCHDR]; in findEND64()
414 if (readFullyAt(zip->zfd, loc64, ZIP64_LOCHDR, endpos - ZIP64_LOCHDR) == -1) { in findEND64()