/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 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...] |
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...] |
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() { 37 * Constructs a new {@code IOException} with its stack trace and detail 43 public IOException(String detailMessage) { 57 public IOException(String message, Throwable cause) { 68 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...] |
/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
|
/external/apache-harmony/support/src/test/java/tests/support/ |
Support_ServerSocket.java | 20 import java.io.IOException; 28 public Support_Socket accept() throws IOException; 34 public void open() throws IOException; 36 public void close() throws IOException;
|
Support_Socket.java | 20 import java.io.IOException; 29 public InputStream getInputStream() throws IOException; 31 public OutputStream getOutputStream() throws IOException; 33 public void close() throws IOException;
|
Support_HttpConnector.java | 20 import java.io.IOException; 31 public void open(String address) throws IOException; 33 public void close() throws IOException; 35 public InputStream getInputStream() throws IOException; 37 public OutputStream getOutputStream() throws IOException; 41 public void setRequestProperty(String key, String value) throws IOException; 43 public String getHeaderField(int index) throws IOException; 45 public String getHeaderFieldKey(int index) throws IOException;
|
/external/apache-xml/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;
|
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/ |
InMemoryRepresentable.java | 3 import java.io.IOException; 8 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;
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/ |
IOExceptionTest.java | 20 import java.io.IOException; 27 * @tests java.io.IOException#IOException() 32 throw new IOException(); 34 fail("Exception during IOException test"); 35 } catch (IOException e) { 41 * @tests java.io.IOException#IOException(java.lang.String) 46 throw new IOException("Some error message"); 49 } catch (IOException e) [all...] |
/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;
|