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

/openjdk7/jdk/src/share/classes/java/util/zip/
H A DGZIPInputStream.java274 private byte[] tmpbuf = new byte[128]; field in class:GZIPInputStream
282 int len = in.read(tmpbuf, 0, n < tmpbuf.length ? n : tmpbuf.length);
H A DZipInputStream.java49 private byte[] tmpbuf = new byte[512]; field in class:ZipInputStream
139 while (read(tmpbuf, 0, tmpbuf.length) != -1) ;
245 if (len > tmpbuf.length) {
246 len = tmpbuf.length;
248 len = read(tmpbuf, 0, len);
277 readFully(tmpbuf, 0, LOCHDR);
281 if (get32(tmpbuf, 0) != LOCSIG) {
285 flag = get16(tmpbuf, LOCFLG);
287 int len = get16(tmpbuf, LOCNA
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jar/
H A DManifest.java51 private byte[] tmpbuf = new byte[512]; field in class:Manifest
190 while ((len = is.read(tmpbuf, 0, tmpbuf.length)) != -1) {
191 dig.update(tmpbuf, 0, len);
/openjdk7/jdk/src/solaris/native/sun/net/spi/
H A DDefaultProxySelector.c302 char *tmpbuf[512]; local
304 s = strtok_r(noproxyfor, ", ", tmpbuf);
316 s = strtok_r(NULL, ", ", tmpbuf);
/openjdk7/hotspot/src/os/windows/launcher/
H A Djava_md.c283 char tmpbuf[MAXPATHLEN]; local
295 strcpy(tmpbuf, jrepath);
296 strcat(tmpbuf, "\\lib\\bundles");
297 if (stat(tmpbuf, &s) != 0) {
299 printf("EnsureJreInstallation:<%s>:not found\n", tmpbuf);
304 strcpy(tmpbuf, jrepath);
305 strcat(tmpbuf, "\\bin\\jkernel.dll");
306 if (stat(tmpbuf, &s) != 0) {
308 printf("EnsureJreInstallation:<%s>:not found\n", tmpbuf);
320 if ((handle = LoadLibrary(tmpbuf))
[all...]

Completed in 269 milliseconds