| /openjdk7/jdk/src/share/classes/java/util/zip/ |
| H A D | ZipInputStream.java | 49 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 D | GZIPInputStream.java | 274 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 D | CharToByteEUC_TW.java | 62 byte [] tmpbuf = new byte[4];; 70 outputByte = tmpbuf;
|
| H A D | CharToByteDoubleByte.java | 89 byte[] tmpbuf = new byte[2]; 112 outputByte = tmpbuf;
|
| H A D | CharToByteEUC_JP_LINUX.java | 94 byte[] tmpbuf = new byte[4]; 117 outputByte = tmpbuf;
|
| H A D | CharToByteEUC_JP.java | 95 byte[] tmpbuf = new byte[4]; 118 outputByte = tmpbuf;
|
| H A D | CharToByteEUC_JP_Solaris.java | 107 byte[] tmpbuf = new byte[4]; 130 outputByte = tmpbuf;
|
| H A D | CharToByteISO2022.java | 154 byte [] tmpbuf = new byte[this.getMaxBytesPerChar()]; 168 outputByte = tmpbuf;
|
| /openjdk7/jdk/make/tools/src/build/tools/generatebreakiteratordata/ |
| H A D | CharSet.java | 497 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 D | RuleBasedBreakIteratorBuilder.java | 2010 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 D | Manifest.java | 51 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 D | DefaultProxySelector.c | 302 char *tmpbuf[512]; local 304 s = strtok_r(noproxyfor, ", ", tmpbuf); 316 s = strtok_r(NULL, ", ", tmpbuf);
|
| /openjdk7/hotspot/src/os/windows/launcher/ |
| H A D | java_md.c | 283 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 D | HttpClient.java | 378 BufferedInputStream tmpbuf = 380 int r = tmpbuf.read();
|