Searched refs:end64buf (Results 1 – 2 of 2) sorted by relevance
/libcore/ojluni/src/main/java/java/util/zip/ |
D | ZipFile.java | 1576 byte[] end64buf = new byte[ZIP64_ENDHDR]; in findEND() 1577 if (readFullyAt(end64buf, 0, end64buf.length, end64pos) in findEND() 1578 != end64buf.length || GETSIG(end64buf) != ZIP64_ENDSIG) { in findEND() 1582 long cenlen64 = ZIP64_ENDSIZ(end64buf); in findEND() 1583 long cenoff64 = ZIP64_ENDOFF(end64buf); in findEND() 1584 long centot64 = ZIP64_ENDTOT(end64buf); in findEND()
|
/libcore/ojluni/src/main/native/ |
D | zip_util.c | 410 findEND64(jzfile *zip, void *end64buf, jlong endpos) in findEND64() argument 418 if (readFullyAt(zip->zfd, end64buf, ZIP64_ENDHDR, end64pos) == -1) { in findEND64() 625 unsigned char end64buf[ZIP64_ENDHDR]; in readCEN() local 626 if ((end64pos = findEND64(zip, end64buf, endpos)) != -1) { in readCEN() 627 cenlen = ZIP64_ENDSIZ(end64buf); in readCEN() 628 cenoff = ZIP64_ENDOFF(end64buf); in readCEN() 629 total = (jint)ZIP64_ENDTOT(end64buf); in readCEN()
|