Searched defs:bytearr (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/java/io/
H A DDataInputStream.java58 private byte bytearr[] = new byte[80]; field in class:DataInputStream
590 byte[] bytearr = null;
594 if (dis.bytearr.length < utflen){
595 dis.bytearr = new byte[utflen*2];
599 bytearr = dis.bytearr;
601 bytearr = new byte[utflen];
609 in.readFully(bytearr, 0, utflen);
612 c = (int) bytearr[count] & 0xff;
619 c = (int) bytearr[coun
[all...]
H A DDataOutputStream.java46 * bytearr is initialized on demand by writeUTF
48 private byte[] bytearr = null; field in class:DataOutputStream
367 byte[] bytearr = null;
370 if(dos.bytearr == null || (dos.bytearr.length < (utflen+2)))
371 dos.bytearr = new byte[(utflen*2) + 2];
372 bytearr = dos.bytearr;
374 bytearr = new byte[utflen+2];
377 bytearr[coun
[all...]

Completed in 75 milliseconds