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

/openjdk7/jdk/src/share/classes/java/util/zip/
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...]
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);
/openjdk7/jdk/src/share/classes/sun/io/
H A DCharToByteEUC_TW.java62 byte [] tmpbuf = new byte[4];;
70 outputByte = tmpbuf;
H A DCharToByteDoubleByte.java89 byte[] tmpbuf = new byte[2];
112 outputByte = tmpbuf;
H A DCharToByteEUC_JP_LINUX.java94 byte[] tmpbuf = new byte[4];
117 outputByte = tmpbuf;
H A DCharToByteEUC_JP.java95 byte[] tmpbuf = new byte[4];
118 outputByte = tmpbuf;
H A DCharToByteEUC_JP_Solaris.java107 byte[] tmpbuf = new byte[4];
130 outputByte = tmpbuf;
H A DCharToByteISO2022.java154 byte [] tmpbuf = new byte[this.getMaxBytesPerChar()];
168 outputByte = tmpbuf;
/openjdk7/jdk/make/tools/src/build/tools/generatebreakiteratordata/
H A DCharSet.java497 int[] tmpbuf = new int[index];
498 System.arraycopy(result, 0, tmpbuf, 0, index);
499 return tmpbuf;
586 int[] tmpbuf = new int[index];
587 System.arraycopy(result, 0, tmpbuf, 0, index);
588 return tmpbuf;
669 int[] tmpbuf = new int[index];
670 System.arraycopy(result, 0, tmpbuf, 0, index);
671 return tmpbuf;
H A DRuleBasedBreakIteratorBuilder.java2010 String tmpbuf = GenerateBreakIteratorData.getOutputDirectory();
2012 if (tmpbuf.equals("")) {
2018 outputDir = tmpbuf;
2020 outputDir = tmpbuf.replaceAll("/", "\\\\");
2022 outputDir = tmpbuf.replaceAll("/", String.valueOf(sep));
/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...]
/openjdk7/jdk/src/share/classes/sun/net/www/http/
H A DHttpClient.java378 BufferedInputStream tmpbuf =
380 int r = tmpbuf.read();

Completed in 39 milliseconds