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

12

/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/io/
H A DIIOPInputStream.java787 public final void readFully(byte data[]) throws IOException{ method in class:IIOPInputStream
788 // d11623 : implement readFully, required for serializing some core classes
790 readFully(data, 0, data.length);
793 public final void readFully(byte data[], int offset, int size) throws IOException{ method in class:IIOPInputStream
794 // d11623 : implement readFully, required for serializing some core classes
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/transport/
H A DSocketOrChannelConnectionImpl.java539 readFully(byteBuffer, length, max_wait_time);
545 readFully(getSocket().getInputStream(), buf,
577 readFully(byteBuffer, length, max_wait_time);
586 readFully(getSocket().getInputStream(), buf,
591 public void readFully(ByteBuffer byteBuffer, int size, long max_wait_time) method in class:SocketOrChannelConnectionImpl
632 dprint("readFully(): unexpected exception "
655 public void readFully(java.io.InputStream is, byte[] buf, method in class:SocketOrChannelConnectionImpl
696 dprint("readFully(): unexpected exception "
/openjdk7/jdk/src/solaris/native/java/lang/
H A DUNIXProcess_md.c653 readFully(int fd, void *buf, size_t nbyte) function
910 switch (readFully(fail[0], &errnum, sizeof(errnum))) {
/openjdk7/jdk/src/share/native/java/util/zip/
H A Dzip_util.c189 readFully(ZFILE zfd, void *buf, jlong len) { function
223 return readFully(zfd, buf, len);
835 if (readFully(zfd, errbuf, 4) != -1) { // errors will be handled later
941 if (readFully(zfd, cen+bufsize, censize-bufsize) == -1) goto Catch;
/openjdk7/jdk/src/share/classes/java/io/
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...]

Completed in 53 milliseconds

12