Searched refs:tmpbuf (Results 1 – 4 of 4) sorted by relevance
/libcore/ojluni/src/main/java/java/util/zip/ |
D | ZipInputStream.java | 51 private byte[] tmpbuf = new byte[512]; field in ZipInputStream 147 while (read(tmpbuf, 0, tmpbuf.length) != -1) ; in closeEntry() 264 if (len > tmpbuf.length) { in skip() 265 len = tmpbuf.length; in skip() 267 len = read(tmpbuf, 0, len); in skip() 296 readFully(tmpbuf, 0, LOCHDR); in readLOC() 300 if (get32(tmpbuf, 0) != LOCSIG) { in readLOC() 304 flag = get16(tmpbuf, LOCFLG); in readLOC() 306 int len = get16(tmpbuf, LOCNAM); in readLOC() 323 e.method = get16(tmpbuf, LOCHOW); in readLOC() [all …]
|
D | GZIPInputStream.java | 287 private byte[] tmpbuf = new byte[128]; field in GZIPInputStream 295 int len = in.read(tmpbuf, 0, n < tmpbuf.length ? n : tmpbuf.length); in skipBytes()
|
/libcore/ojluni/annotations/hiddenapi/java/util/zip/ |
D | ZipInputStream.java | 109 private byte[] tmpbuf; field in ZipInputStream
|
/libcore/ojluni/src/main/native/ |
D | zip_util.c | 1504 char tmpbuf[1024]; in ZIP_ReadEntry() local 1529 getErrorString(errno, tmpbuf, sizeof(tmpbuf)); in ZIP_ReadEntry() 1530 msg = tmpbuf; in ZIP_ReadEntry() 1546 getErrorString(errno, tmpbuf, sizeof(tmpbuf)); in ZIP_ReadEntry() 1547 msg = tmpbuf; in ZIP_ReadEntry()
|