Searched refs:IOException (Results 1 - 25 of 711) sorted by relevance

1234567891011>>

/libcore/luni/src/main/java/java/io/
H A DDataInput.java55 * @throws IOException
59 public abstract boolean readBoolean() throws IOException;
67 * @throws IOException
71 public abstract byte readByte() throws IOException;
79 * @throws IOException
83 public abstract char readChar() throws IOException;
91 * @throws IOException
95 public abstract double readDouble() throws IOException;
103 * @throws IOException
107 public abstract float readFloat() throws IOException;
[all...]
H A DDataOutput.java38 * @throws IOException
41 public abstract void write(byte[] buffer) throws IOException;
53 * @throws IOException
56 public abstract void write(byte[] buffer, int offset, int count) throws IOException;
63 * @throws IOException
67 public abstract void write(int oneByte) throws IOException;
74 * @throws IOException
78 public abstract void writeBoolean(boolean val) throws IOException;
85 * @throws IOException
90 public abstract void writeByte(int val) throws IOException;
[all...]
H A DObjectInput.java32 * @throws IOException
35 public int available() throws IOException;
41 * @throws IOException
44 public void close() throws IOException;
52 * @throws IOException
55 public int read() throws IOException;
62 * @throws IOException
65 public int read(byte[] buffer) throws IOException;
73 * @throws IOException
76 public int read(byte[] buffer, int byteOffset, int byteCount) throws IOException;
[all...]
H A DFlushable.java29 * @throws IOException
32 void flush() throws IOException;
H A DObjectOutput.java31 * @throws IOException
34 public void close() throws IOException;
40 * @throws IOException
43 public void flush() throws IOException;
51 * @throws IOException
54 public void write(byte[] buffer) throws IOException;
68 * @throws IOException
71 public void write(byte[] buffer, int offset, int count) throws IOException;
80 * @throws IOException
83 public void write(int value) throws IOException;
[all...]
H A DIOException.java26 public class IOException extends Exception { class in inherits:Exception
31 * Constructs a new {@code IOException} with its stack trace filled in.
33 public IOException() { method in class:IOException
37 * Constructs a new {@code IOException} with its stack trace and detail
43 public IOException(String detailMessage) { method in class:IOException
57 public IOException(String message, Throwable cause) { method in class:IOException
68 public IOException(Throwable cause) { method in class:IOException
H A DExternalizable.java30 * @throws IOException
35 public void readExternal(ObjectInput input) throws IOException,
43 * @throws IOException
46 public void writeExternal(ObjectOutput output) throws IOException;
H A DCloseable.java20 * An {@code AutoCloseable} whose close method may throw an {@link IOException}.
32 void close() throws IOException;
H A DInputStream.java39 * false from {@link #markSupported()} and throw an {@link IOException} when
99 * @throws IOException if this stream is closed or an error occurs
101 public int available() throws IOException {
109 * @throws IOException
112 public void close() throws IOException {
153 * @throws IOException
154 * if the stream is closed or another IOException occurs.
156 public abstract int read() throws IOException;
161 public int read(byte[] buffer) throws IOException {
173 * @throws IOException
[all...]
/libcore/crypto/src/main/java/org/conscrypt/
H A DEndOfBufferException.java20 import java.io.IOException;
26 public class EndOfBufferException extends IOException {
H A DEndOfSourceException.java20 import java.io.IOException;
26 public class EndOfSourceException extends IOException {
H A DSSLInputStream.java20 import java.io.IOException;
33 public abstract int available() throws IOException;
46 public abstract int read() throws IOException;
51 public int readUint8() throws IOException {
58 public int readUint16() throws IOException {
65 public int readUint24() throws IOException {
72 public long readUint32() throws IOException {
80 public long readUint64() throws IOException {
90 * @throws IOException if read operation could not be finished.
92 public byte[] read(int length) throws IOException {
[all...]
/libcore/luni/src/main/java/java/nio/channels/
H A DInterruptibleChannel.java19 import java.io.IOException;
47 * @throws IOException
50 public void close() throws IOException;
H A DChannel.java20 import java.io.IOException;
43 * method throws an IOException and the exception contains reasons for the
53 * @throws IOException
56 public void close() throws IOException;
H A DClosedChannelException.java19 import java.io.IOException;
25 public class ClosedChannelException extends IOException {
H A DFileLockInterruptionException.java19 import java.io.IOException;
27 public class FileLockInterruptionException extends IOException {
H A DFileChannel.java19 import java.io.IOException;
153 * @throws IOException
156 public abstract void force(boolean metadata) throws IOException;
180 * @throws IOException
184 public final FileLock lock() throws IOException {
247 * @throws IOException
251 throws IOException;
277 * @throws IOException
281 long position, long size) throws IOException;
290 * @throws IOException
[all...]
/libcore/luni/src/main/java/java/lang/
H A DReadable.java19 import java.io.IOException;
36 * @throws IOException
39 int read(CharBuffer cb) throws IOException;
H A DAppendable.java19 import java.io.IOException;
32 * can choose to throw exceptions other than {@code IOException} or they do not
43 * @throws IOException
46 Appendable append(char c) throws IOException;
58 * @throws IOException
61 Appendable append(CharSequence csq) throws IOException;
83 * @throws IOException
86 Appendable append(CharSequence csq, int start, int end) throws IOException;
/libcore/luni/src/main/java/java/net/
H A DCacheRequest.java19 import java.io.IOException;
28 * IOException} occurs while reading the response or writing data to the cache,
42 * Aborts the current cache operation. If an {@code IOException} occurs
52 * @throws IOException
56 public abstract OutputStream getBody() throws IOException;
H A DUnknownHostException.java20 import java.io.IOException;
25 public class UnknownHostException extends IOException {
H A DSocketImpl.java21 import java.io.IOException;
62 * @throws IOException
65 protected abstract void accept(SocketImpl newSocket) throws IOException;
72 * @throws IOException
75 protected abstract int available() throws IOException;
84 * @throws IOException
87 protected abstract void bind(InetAddress address, int port) throws IOException;
92 * @throws IOException
95 protected abstract void close() throws IOException;
104 * @throws IOException
[all...]
/libcore/luni/src/main/java/java/nio/charset/
H A DCharacterCodingException.java20 import java.io.IOException;
26 public class CharacterCodingException extends IOException {
/libcore/luni/src/main/java/javax/security/auth/callback/
H A DCallbackHandler.java20 import java.io.IOException;
46 * @throws IOException
52 void handle(Callback[] callbacks) throws IOException, UnsupportedCallbackException;
/libcore/harmony-tests/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/
H A DMockSocketChannel.java20 import java.io.IOException;
45 public boolean connect(SocketAddress arg0) throws IOException {
49 public boolean finishConnect() throws IOException {
53 public int read(ByteBuffer arg0) throws IOException {
57 public long read(ByteBuffer[] arg0, int arg1, int arg2) throws IOException {
61 public int write(ByteBuffer arg0) throws IOException {
65 public long write(ByteBuffer[] arg0, int arg1, int arg2) throws IOException {
69 protected void implCloseSelectableChannel() throws IOException {
72 protected void implConfigureBlocking(boolean arg0) throws IOException {

Completed in 234 milliseconds

1234567891011>>