/libcore/luni/src/main/java/java/net/ |
ContentHandler.java | 20 import java.io.IOException; 38 * @throws IOException 41 public abstract Object getContent(URLConnection uConn) throws IOException; 52 * @throws IOException 58 throws IOException {
|
/libcore/luni/src/main/java/java/nio/channels/ |
ServerSocketChannel.java | 20 import java.io.IOException; 56 * @throws IOException 59 public static ServerSocketChannel open() throws IOException { 106 * @throws IOException 111 public abstract SocketChannel accept() throws IOException;
|
/libcore/luni/src/main/java/java/security/ |
Certificate.java | 20 import java.io.IOException; 45 * @throws IOException 50 public void decode(InputStream stream) throws KeyException, IOException; 61 * @throws IOException 65 public void encode(OutputStream stream) throws KeyException, IOException;
|
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
SSLBufferedInput.java | 20 import java.io.IOException; 51 public int available() throws IOException { 68 public int read() throws IOException {
|
SSLStreamedInput.java | 20 import java.io.IOException; 36 public int available() throws IOException { 43 * @throws IOException if the data could not be read from 49 public int read() throws IOException {
|
/libcore/luni/src/main/java/org/xml/sax/ |
Parser.java | 8 import java.io.IOException; 169 * @exception java.io.IOException An IO exception from the parser, 180 throws SAXException, IOException; 200 * @exception java.io.IOException An IO exception from the parser, 206 throws SAXException, IOException;
|
/libcore/luni/src/test/java/libcore/java/net/customstreamhandler/http/ |
Handler.java | 19 import java.io.IOException; 30 @Override protected URLConnection openConnection(URL url) throws IOException { 39 @Override public void connect() throws IOException {
|
/packages/apps/Email/emailcommon/src/org/apache/commons/io/input/ |
NullInputStream.java | 20 import java.io.IOException;
138 * @throws IOException If an error occurs.
140 public void close() throws IOException {
178 * @throws IOException if trying to read past the end of file.
180 public int read() throws IOException {
182 throw new IOException("Read after end of file");
200 * @throws IOException if trying to read past the end of file.
202 public int read(byte[] bytes) throws IOException {
217 * @throws IOException if trying to read past the end of file.
219 public int read(byte[] bytes, int offset, int length) throws IOException {
[all...] |
NullReader.java | 20 import java.io.IOException;
122 * @throws IOException If an error occurs.
124 public void close() throws IOException {
162 * @throws IOException if trying to read past the end of file.
164 public int read() throws IOException {
166 throw new IOException("Read after end of file");
184 * @throws IOException if trying to read past the end of file.
186 public int read(char[] chars) throws IOException {
201 * @throws IOException if trying to read past the end of file.
203 public int read(char[] chars, int offset, int length) throws IOException {
[all...] |
/packages/apps/Email/src/com/android/email/mail/transport/ |
EOLConvertingOutputStream.java | 20 import java.io.IOException; 31 public void write(int oneByte) throws IOException { 42 public void flush() throws IOException {
|
/packages/apps/Exchange/src/com/android/exchange/ |
MockParserStream.java | 20 import java.io.IOException; 40 public int read() throws IOException { 44 throw new IOException("End of stream");
|
/external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/ |
MockServerSocketChannel.java | 20 import java.io.IOException; 36 public SocketChannel accept() throws IOException { 40 protected void implCloseSelectableChannel() throws IOException { 43 protected void implConfigureBlocking(boolean arg0) throws IOException {
|
/external/apache-harmony/support/src/test/java/tests/support/ |
Support_HttpServerSocket.java | 20 import java.io.IOException; 41 public Support_Socket accept() throws IOException { 68 public void open() throws IOException { 75 public void close() throws IOException {
|
Support_HttpSocket.java | 20 import java.io.IOException; 38 public InputStream getInputStream() throws IOException { 43 public OutputStream getOutputStream() throws IOException { 48 public void close() throws IOException {
|
/external/apache-http/src/org/apache/http/conn/ |
BasicEofSensorWatcher.java | 34 import java.io.IOException; 79 throws IOException { 97 throws IOException { 115 throws IOException {
|
OperatedClientConnection.java | 34 import java.io.IOException; 126 throws IOException 143 throws IOException 170 throws IOException
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
Serializer.java | 22 import java.io.IOException; 190 * @throws IOException An I/O exception occured 192 public ContentHandler asContentHandler() throws IOException; 206 * @throws IOException An I/O exception occured 208 public DOMSerializer asDOMSerializer() throws IOException; 234 * @throws IOException An I/O exception occured 236 public Object asDOM3Serializer() throws IOException;
|
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/ |
DERExternalParser.java | 3 import java.io.IOException; 19 throws IOException 25 throws IOException 43 catch (IOException ioe)
|
/external/guava/src/com/google/common/io/ |
Flushables.java | 20 import java.io.IOException; 38 * {@code IOException} may be thrown. 41 * {@code IOException}, but merely log it. 46 * @throws IOException if {@code swallowIOException} is false and 47 * {@link Flushable#flush} throws an {@code IOException}. 51 throws IOException { 54 } catch (IOException e) { 56 "IOException thrown while flushing Flushable.", e); 65 * {@code IOException} in the signature. 72 } catch (IOException e) [all...] |
/external/proguard/src/proguard/io/ |
ParentDataEntryWriter.java | 50 public boolean createDirectory(DataEntry dataEntry) throws IOException 56 public OutputStream getOutputStream(DataEntry dataEntry) throws IOException 63 Finisher finisher) throws IOException 70 public void close() throws IOException
|
/frameworks/base/core/java/android/bluetooth/ |
BluetoothOutputStream.java | 19 import java.io.IOException; 39 public void close() throws IOException { 49 * @throws IOException 53 public void write(int oneByte) throws IOException { 70 * @throws IOException 78 public void write(byte[] b, int offset, int count) throws IOException {
|
/frameworks/base/media/java/android/drm/mobile1/ |
DrmException.java | 19 import java.io.IOException;
|
/frameworks/ex/variablespeed/src/com/android/ex/variablespeed/ |
MediaPlayerProxy.java | 23 import java.io.IOException; 39 void setDataSource(String path) throws IllegalStateException, IOException; 40 void setDataSource(Context context, Uri intentUri) throws IllegalStateException, IOException; 41 void prepare() throws IOException;
|
/libcore/dalvik/src/main/java/dalvik/system/profiler/ |
ThreadSampler.java | 19 import java.io.IOException;
|
/libcore/luni/src/main/java/java/io/ |
CharConversionException.java | 23 public class CharConversionException extends IOException {
|