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

/libcore/luni/src/main/java/java/util/zip/
H A DZipOutputStream.java89 private ZipEntry currentEntry; field in class:ZipOutputStream
135 if (currentEntry == null) {
138 if (currentEntry.getMethod() == DEFLATED) {
143 if (currentEntry.getMethod() == STORED) {
144 if (crc.getValue() != currentEntry.crc) {
147 if (currentEntry.size != crc.tbytes) {
154 if (currentEntry.getMethod() != STORED) {
157 writeLong(out, currentEntry.crc = crc.getValue());
158 writeLong(out, currentEntry.compressedSize = def.getTotalOut());
159 writeLong(out, currentEntry
[all...]
H A DZipInputStream.java85 private ZipEntry currentEntry; field in class:ZipInputStream
130 if (currentEntry == null) {
133 if (currentEntry instanceof java.util.jar.JarEntry) {
134 Attributes temp = ((JarEntry) currentEntry).getAttributes();
158 if (currentEntry.compressionMethod == ZipEntry.DEFLATED) {
182 currentEntry = null;
203 currentEntry.crc = ((long) Memory.peekInt(hdrBuf, EXTCRC, ByteOrder.LITTLE_ENDIAN)) & 0xffffffffL;
204 currentEntry.compressedSize = ((long) Memory.peekInt(hdrBuf, EXTSIZ, ByteOrder.LITTLE_ENDIAN)) & 0xffffffffL;
205 currentEntry.size = ((long) Memory.peekInt(hdrBuf, EXTLEN, ByteOrder.LITTLE_ENDIAN)) & 0xffffffffL;
207 if (currentEntry
[all...]
/libcore/luni/src/main/java/java/util/
H A DWeakHashMap.java118 private Entry<K, V> currentEntry, nextEntry; field in class:WeakHashMap.HashIterator
156 currentEntry = nextEntry;
157 nextEntry = currentEntry.next;
158 R result = type.get(currentEntry);
170 if (currentEntry != null) {
171 removeEntry(currentEntry);
172 currentEntry = null;

Completed in 40 milliseconds