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

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/file/
H A DZipFileIndex.java489 byte[] zipDir; field in class:ZipFileIndex.ZipDirectory
552 zipDir = new byte[get4ByteLittleEndian(endbuf, i + 12) + 2];
553 zipDir[0] = endbuf[i + 10];
554 zipDir[1] = endbuf[i + 11];
558 if (sz < 0 || get2ByteLittleEndian(zipDir, 0) == 0xffff) {
562 zipRandomFile.readFully(zipDir, 2, zipDir.length - 2);
572 int entryCount = get2ByteLittleEndian(zipDir, 0);
602 if (get4ByteLittleEndian(zipDir, pos) != 0x02014b50) {
608 int fileEnd = fileStart + get2ByteLittleEndian(zipDir, po
[all...]

Completed in 32 milliseconds