Searched refs:readFully (Results 1 - 25 of 110) sorted by relevance

12345

/openjdk7/jdk/src/share/classes/java/io/
H A DDataInput.java235 void readFully(byte b[]) throws IOException; method in interface:DataInput
281 void readFully(byte b[], int off, int len) throws IOException; method in interface:DataInput
H A DDataInputStream.java153 * See the general contract of the <code>readFully</code>
168 public final void readFully(byte b[]) throws IOException { method in class:DataInputStream
169 readFully(b, 0, b.length);
173 * See the general contract of the <code>readFully</code>
190 public final void readFully(byte b[], int off, int len) throws IOException { method in class:DataInputStream
416 readFully(readBuffer, 0, 8);
609 in.readFully(bytearr, 0, utflen);
H A DObjectInputStream.java844 * is available. Consider using java.io.DataInputStream.readFully to read
853 * @see java.io.DataInputStream#readFully(byte[],int,int)
1012 public void readFully(byte[] buf) throws IOException { method in class:ObjectInputStream
1013 bin.readFully(buf, 0, buf.length, false);
1025 public void readFully(byte[] buf, int off, int len) throws IOException { method in class:ObjectInputStream
1030 bin.readFully(buf, off, len, false);
1685 bin.readFully((byte[]) array, 0, len, true);
1978 bin.readFully(primVals, 0, primDataSize, false);
2146 bin.readFully(primVals, 0, primVals.length, false);
2319 void readFully(byt method in class:ObjectInputStream.PeekInputStream
2729 public void readFully(byte[] b) throws IOException { method in class:ObjectInputStream.BlockDataInputStream
2733 public void readFully(byte[] b, int off, int len) throws IOException { method in class:ObjectInputStream.BlockDataInputStream
2737 public void readFully(byte[] b, int off, int len, boolean copy) method in class:ObjectInputStream.BlockDataInputStream
[all...]
/openjdk7/jdk/src/share/classes/javax/imageio/stream/
H A DImageInputStream.java521 void readFully(byte[] b, int off, int len) throws IOException; method in interface:ImageInputStream
540 void readFully(byte[] b) throws IOException; method in interface:ImageInputStream
565 void readFully(short[] s, int off, int len) throws IOException; method in interface:ImageInputStream
590 void readFully(char[] c, int off, int len) throws IOException; method in interface:ImageInputStream
615 void readFully(int[] i, int off, int len) throws IOException; method in interface:ImageInputStream
640 void readFully(long[] l, int off, int len) throws IOException; method in interface:ImageInputStream
665 void readFully(float[] f, int off, int len) throws IOException; method in interface:ImageInputStream
690 void readFully(double[] d, int off, int len) throws IOException; method in interface:ImageInputStream
712 * <code>readFully</code> method.
H A DImageInputStreamImpl.java52 // Length of the buffer used for readFully(type[], int, int)
56 * Byte buffer used for readFully(type[], int, int). Note that this
343 public void readFully(byte[] b, int off, int len) throws IOException { method in class:ImageInputStreamImpl
360 public void readFully(byte[] b) throws IOException { method in class:ImageInputStreamImpl
361 readFully(b, 0, b.length);
364 public void readFully(short[] s, int off, int len) throws IOException { method in class:ImageInputStreamImpl
373 readFully(byteBuf, 0, nelts*2);
380 public void readFully(char[] c, int off, int len) throws IOException { method in class:ImageInputStreamImpl
389 readFully(byteBuf, 0, nelts*2);
396 public void readFully(in method in class:ImageInputStreamImpl
412 public void readFully(long[] l, int off, int len) throws IOException { method in class:ImageInputStreamImpl
428 public void readFully(float[] f, int off, int len) throws IOException { method in class:ImageInputStreamImpl
444 public void readFully(double[] d, int off, int len) throws IOException { method in class:ImageInputStreamImpl
[all...]
/openjdk7/jdk/test/sun/security/util/DerValue/
H A DBadValue.java38 // Test IOUtils.readFully
42 byte[] bs = IOUtils.readFully(in, 4, true);
47 bs = IOUtils.readFully(in, 10, false);
53 bs = IOUtils.readFully(in, Integer.MAX_VALUE, true);
59 bs = IOUtils.readFully(in, Integer.MAX_VALUE, false);
66 bs = IOUtils.readFully(in, 20, true);
72 bs = IOUtils.readFully(new SuperSlowStream(bignum), -1, true);
/openjdk7/jdk/test/java/io/DataInputStream/
H A DReadFully.java26 * @summary Passing a negative length argument for readFully must throw
42 dis.readFully(buffer, 0, -20);
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DClassReader.java63 readFully(data);
74 public void readFully(byte[] b) throws IOException { method in class:ClassReader
75 in.readFully(b);
H A DSourceDebugExtension_attribute.java44 cr.readFully(debug_extension);
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DICUBinary.java144 input.readFully(dataFormatID);
147 input.readFully(dataVersion);
150 input.readFully(unicodeVersion);
H A DNormalizerDataReader.java333 dataInputStream.readFully(normBytes);
348 dataInputStream.readFully(fcdBytes);
352 dataInputStream.readFully(auxBytes);
/openjdk7/jdk/test/java/io/Serializable/subclass/
H A DAbstractObjectInputStream.java313 abstract public void readFully(byte[] data) throws IOException; method in class:AbstractObjectInputStream
314 abstract public void readFully(byte[] data, int offset, int size) throws IOException; method in class:AbstractObjectInputStream
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/sasl/
H A DSaslInputStream.java123 int actual = readFully(lenBuf, 4);
140 actual = readFully(saslBuffer, len);
158 private int readFully(byte[] inBuf, int total) throws IOException { method in class:SaslInputStream
162 System.err.println("readFully " + total + " from " + in);
169 System.err.println("readFully read " + count);
/openjdk7/jdk/src/share/classes/sun/security/jgss/
H A DGSSToken.java174 public static final void readFully(InputStream is, byte[] buffer) method in class:GSSToken
176 readFully(is, buffer, 0, buffer.length);
191 public static final void readFully(InputStream is, method in class:GSSToken
/openjdk7/jdk/src/share/classes/sun/misc/
H A DIOUtils.java50 public static byte[] readFully(InputStream is, int length, boolean readAll) method in class:IOUtils
H A DCharacterEncoder.java124 protected int readFully(InputStream in, byte buffer[]) method in class:CharacterEncoder
150 numBytes = readFully(inStream, tmpbuffer);
285 numBytes = readFully(inStream, tmpbuffer);
/openjdk7/jdk/src/solaris/classes/sun/security/provider/
H A DNativePRNG.java182 readFully(urandomIn, b);
197 private static void readFully(InputStream in, byte[] data) method in class:NativePRNG.RandomIO
219 readFully(randomIn, b);
264 readFully(urandomIn, urandomBuffer);
/openjdk7/jdk/src/share/classes/java/lang/
H A DCharacterName.java59 dis.readFully(ba);
83 dis.readFully(strPool);
/openjdk7/jdk/test/java/util/zip/GZIP/
H A DAccordion.java40 private static void readFully(InputStream s, byte[] buf) throws Throwable { method in class:Accordion
76 readFully(s, maybeBytes);
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DRIFFReader.java76 readFully(fourcc, 1, 3);
84 readFully(format);
150 public final void readFully(byte b[]) throws IOException { method in class:RIFFReader
151 readFully(b, 0, b.length);
154 public final void readFully(byte b[], int off, int len) throws IOException { method in class:RIFFReader
215 readFully(buff);
/openjdk7/jdk/test/com/sun/net/httpserver/bugs/
H A DB6373555.java114 byte[] newBuf = readFully(in);
135 private static byte[] readFully(InputStream istream) throws IOException { method in class:B6373555
168 byte[] buf = readFully(is);
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/
H A DNetClient.java82 int count = readFully(lenField, 4);
106 count = readFully(data, len);
128 private int readFully(byte[] inBuf, int total) throws IOException { method in class:TCPClient
/openjdk7/jdk/src/share/classes/java/util/zip/
H A DZipInputStream.java277 readFully(tmpbuf, 0, LOCHDR);
295 readFully(b, 0, len);
320 readFully(bb, 0, len);
373 readFully(tmpbuf, 0, ZIP64_EXTHDR);
387 readFully(tmpbuf, 0, EXTHDR);
422 private void readFully(byte[] b, int off, int len) throws IOException { method in class:ZipInputStream
/openjdk7/jdk/test/java/io/RandomAccessFile/
H A DParameterCheck.java28 readFully(byte[], int, int) and write(byte[], int, int) of RandomAccessFile
69 if (method.equals("readFully")) {
70 raf.readFully(b , off[i] , len[i]);
106 if (method.equals("readFully")) {
107 raf.readFully(null, 1, 2);
152 doTest("readFully");
/openjdk7/langtools/test/tools/javah/4942232/
H A DTest.java116 in.readFully(buf);
124 in.readFully(buf);

Completed in 73 milliseconds

12345