HomeSort by relevance Sort by last modified time
    Searched refs:IOException (Results 1 - 25 of 2493) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/java/io/
DataInput.java 55 * @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...]
DataOutput.java 38 * @throws IOException
43 public abstract void write(byte[] buffer) throws IOException;
55 * @throws IOException
60 public abstract void write(byte[] buffer, int offset, int count) throws IOException;
70 * @throws IOException
74 public abstract void write(int oneByte) throws IOException;
81 * @throws IOException
85 public abstract void writeBoolean(boolean val) throws IOException;
92 * @throws IOException
97 public abstract void writeByte(int val) throws IOException;
    [all...]
ObjectInput.java 32 * @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;
65 * @throws IOException
68 public int read(byte[] buffer) throws IOException;
84 * @throws IOException
87 public int read(byte[] buffer, int offset, int count) throws IOException;
    [all...]
Closeable.java 31 * @throws IOException
34 public void close() throws IOException;
Flushable.java 29 * @throws IOException
32 void flush() throws IOException;
ObjectOutput.java 31 * @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...]
IOException.java 26 public class IOException extends Exception {
31 * Constructs a new {@code IOException} with its stack trace filled in.
33 public IOException() {
38 * Constructs a new {@code IOException} with its stack trace and detail
44 public IOException(String detailMessage) {
58 public IOException(String message, Throwable cause) {
69 public IOException(Throwable cause) {
  /external/proguard/src/proguard/io/
Finisher.java 23 import java.io.IOException;
36 public void finish() throws IOException;
DataEntryPump.java 23 import java.io.IOException;
42 throws IOException;
DataEntryReader.java 23 import java.io.IOException;
37 public void read(DataEntry dataEntry) throws IOException;
  /frameworks/base/obex/javax/obex/
BaseStream.java 35 import java.io.IOException;
46 * @throws IOException if the object is closed
48 void ensureOpen() throws IOException;
53 * @throws IOException if the operation is completed
55 void ensureNotDone() throws IOException;
65 * @throws IOException if an IO error occurs
67 boolean continueOperation(boolean sendEmpty, boolean inStream) throws IOException;
73 * @throws IOException if an IO error occurs
75 void streamClosed(boolean inStream) throws IOException;
ObexTransport.java 37 import java.io.IOException;
58 void create() throws IOException;
60 void listen() throws IOException;
62 void close() throws IOException;
64 void connect() throws IOException;
66 void disconnect() throws IOException;
68 InputStream openInputStream() throws IOException;
70 OutputStream openOutputStream() throws IOException;
72 DataInputStream openDataInputStream() throws IOException;
74 DataOutputStream openDataOutputStream() throws IOException;
    [all...]
Operation.java 37 import java.io.IOException;
45 * ends the operation, an <code>IOException</code> is thrown on the next read
67 * void putObjectViaOBEX(ClientSession conn, HeaderSet head, byte[] obj) throws IOException {
85 * byte[] getObjectViaOBEX(ClientSession conn, HeaderSet head) throws IOException {
125 * @throws IOException if the transaction has already ended or if an OBEX
128 void abort() throws IOException;
135 * @throws IOException if this <code>Operation</code> has been closed
137 HeaderSet getReceivedHeader() throws IOException;
143 * @throws IOException if this <code>Operation</code> has been closed or the
150 void sendHeaders(HeaderSet headers) throws IOException;
    [all...]
SessionNotifier.java 35 import java.io.IOException;
84 * @throws IOException if an error occurs in the transport layer
87 ObexSession acceptAndOpen(ServerRequestHandler handler) throws IOException;
124 * @throws IOException if an error occurs in the transport layer
127 ObexSession acceptAndOpen(ServerRequestHandler handler, Authenticator auth) throws IOException;
  /external/apache-http/src/org/apache/http/
HttpClientConnection.java 34 import java.io.IOException;
58 * @throws IOException if an error happens on the connection
61 throws IOException;
67 * @throws IOException
70 throws HttpException, IOException;
76 * @throws IOException
79 throws HttpException, IOException;
89 * @throws IOException
92 throws HttpException, IOException;
100 * @throws IOException
    [all...]
HttpServerConnection.java 34 import java.io.IOException;
56 * @throws IOException
59 throws HttpException, IOException;
66 * @throws IOException
69 throws HttpException, IOException;
75 * @throws IOException
78 throws HttpException, IOException;
84 * @throws IOException
87 throws HttpException, IOException;
91 * @throws IOException
    [all...]
HttpConnection.java 34 import java.io.IOException;
54 public void close() throws IOException;
66 * connection it will throw an IOException.
102 public void shutdown() throws IOException;
  /external/apache-http/src/org/apache/http/conn/
ConnectionReleaseTrigger.java 33 import java.io.IOException;
65 * @throws IOException
70 throws IOException
78 * @throws IOException in case of an IO problem.
82 throws IOException
  /libcore/luni/src/main/java/java/nio/channels/
InterruptibleChannel.java 19 import java.io.IOException;
47 * @throws IOException
50 public void close() throws IOException;
  /libcore/luni/src/main/java/org/apache/xml/serializer/
WriterChain.java 23 import java.io.IOException;
54 public void write(int val) throws IOException;
56 public void write(char[] chars) throws IOException;
58 public void write(char[] chars, int start, int count) throws IOException;
60 public void write(String chars) throws IOException;
62 public void write(String chars, int start, int count) throws IOException;
64 public void flush() throws IOException;
66 public void close() throws IOException;
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
ShellCommandUnresponsiveException.java 19 import java.io.IOException;
26 public class ShellCommandUnresponsiveException extends IOException {
TimeoutException.java 19 import java.io.IOException;
25 public class TimeoutException extends IOException {
  /external/apache-http/src/org/apache/http/io/
SessionInputBuffer.java 34 import java.io.IOException;
49 int read(byte[] b, int off, int len) throws IOException;
51 int read(byte[] b) throws IOException;
53 int read() throws IOException;
55 int readLine(CharArrayBuffer buffer) throws IOException;
57 String readLine() throws IOException;
59 boolean isDataAvailable(int timeout) throws IOException;
SessionOutputBuffer.java 34 import java.io.IOException;
49 void write(byte[] b, int off, int len) throws IOException;
51 void write(byte[] b) throws IOException;
53 void write(int b) throws IOException;
55 void writeLine(String s) throws IOException;
57 void writeLine(CharArrayBuffer buffer) throws IOException;
59 void flush() throws IOException;
  /packages/apps/Email/src/org/apache/james/mime4j/util/
TempPath.java 22 import java.io.IOException;
29 TempPath createTempPath() throws IOException;
30 TempPath createTempPath(String prefix) throws IOException;
40 TempFile createTempFile() throws IOException;
52 TempFile createTempFile(String prefix, String suffix) throws IOException;
70 boolean allowInMemory) throws IOException;

Completed in 2187 milliseconds

1 2 3 4 5 6 7 8 91011>>