Searched defs:tmpbuf (Results 1 - 3 of 3) sorted by relevance

/libcore/ojluni/src/main/java/java/util/zip/
H A DGZIPInputStream.java279 private byte[] tmpbuf = new byte[128]; field in class:GZIPInputStream
287 int len = in.read(tmpbuf, 0, n < tmpbuf.length ? n : tmpbuf.length);
H A DZipInputStream.java51 private byte[] tmpbuf = new byte[512]; field in class:ZipInputStream
145 while (read(tmpbuf, 0, tmpbuf.length) != -1) ;
257 if (len > tmpbuf.length) {
258 len = tmpbuf.length;
260 len = read(tmpbuf, 0, len);
289 readFully(tmpbuf, 0, LOCHDR);
293 if (get32(tmpbuf, 0) != LOCSIG) {
297 flag = get16(tmpbuf, LOCFLG);
299 int len = get16(tmpbuf, LOCNA
[all...]
/libcore/ojluni/src/main/native/
H A Dzip_util.c1502 char tmpbuf[1024]; local
1527 getErrorString(errno, tmpbuf, sizeof(tmpbuf));
1528 msg = tmpbuf;
1544 getErrorString(errno, tmpbuf, sizeof(tmpbuf));
1545 msg = tmpbuf;

Completed in 52 milliseconds