Searched defs:readFully (Results 1 - 25 of 30) sorted by relevance

12

/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/sun/misc/
H A DIOUtils.java50 public static byte[] readFully(InputStream is, int length, boolean readAll) method in class:IOUtils
H A DCharacterDecoder.java133 protected int readFully(InputStream in, byte buffer[], int offset, int len) method in class:CharacterDecoder
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/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);
/openjdk7/jdk/test/sun/net/www/protocol/jar/jarbug/src/test/
H A DJarTest.java37 protected byte[] readFully(InputStream in) throws Exception { method in class:JarTest
/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 DRandomAccessFile.java423 public final void readFully(byte b[]) throws IOException { method in class:RandomAccessFile
424 readFully(b, 0, b.length);
441 public final void readFully(byte b[], int off, int len) throws IOException { method in class:RandomAccessFile
/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/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/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/GenSSLConfigs/
H A DTraffic.java228 readFully (actual);
262 private void readFully (byte buf []) method in class:Traffic
/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/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/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/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/client/p2p/
H A DHttpSOAPConnection.java313 byte[] bytes = readFully(httpIn);
539 private byte[] readFully(InputStream istream) throws IOException { method in class:HttpSOAPConnection
/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
H A DXObjectInputStream.java150 public void readFully(byte[] data) throws IOException { method in class:XObjectInputStream
153 public void readFully(byte[] data, int offset, int size) throws IOException { method in class:XObjectInputStream
/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/sun/security/provider/
H A DX509Factory.java113 private static int readFully(InputStream in, ByteArrayOutputStream bout, method in class:X509Factory
692 if (readFully(is, bout, length) != length) {
/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/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/src/share/classes/sun/security/ssl/
H A DInputRecord.java438 private int readFully(InputStream s, byte b[], int off, int len) method in class:InputRecord
480 int really = readFully(s, buf, exlen, headerSize - exlen);
554 int really = readFully(
630 int really = readFully(
/openjdk7/jdk/test/java/util/zip/
H A DInflateIn_DeflateOut.java101 private static boolean readFully(InputStream in, byte[] buf, int length) method in class:InflateIn_DeflateOut
145 check(readFully(iis, buf, buf.length));
162 check(readFully(is, buf, buf.length));
174 if (!readFully(is, buf, buf.length)) {

Completed in 92 milliseconds

12