/external/oauth/core/src/main/java/net/oauth/ |
OAuthValidator.java | 18 import java.io.IOException; 34 * @throws IOException TODO 41 throws OAuthException, IOException, URISyntaxException;
|
/external/proguard/src/proguard/io/ |
DataEntry.java | 48 public InputStream getInputStream() throws IOException; 54 public void closeInputStream() throws IOException;
|
/frameworks/base/core/java/com/android/internal/http/multipart/ |
PartSource.java | 33 import java.io.IOException; 68 * @throws IOException if an error occurs when creating the InputStream 70 InputStream createInputStream() throws IOException;
|
/libcore/luni/src/main/java/java/nio/channels/ |
ReadableByteChannel.java | 19 import java.io.IOException; 60 * @throws IOException 65 public int read(ByteBuffer buffer) throws IOException;
|
WritableByteChannel.java | 19 import java.io.IOException; 60 * @throws IOException 63 public int write(ByteBuffer buffer) throws IOException;
|
/libcore/luni/src/main/java/java/util/zip/ |
ZipException.java | 20 import java.io.IOException; 29 public class ZipException extends IOException {
|
/libcore/luni/src/main/java/org/apache/harmony/security/asn1/ |
ASN1Exception.java | 25 import java.io.IOException; 30 public final class ASN1Exception extends IOException {
|
/libcore/luni/src/main/java/org/xml/sax/ |
EntityResolver.java | 8 import java.io.IOException; 108 * @exception java.io.IOException A Java-specific IO exception, 115 throws SAXException, IOException;
|
/libcore/support/src/test/java/tests/support/ |
Support_ASimpleOutputStream.java | 3 import java.io.IOException; 41 public void close() throws IOException { 43 throw new IOException("Exception thrown for testing purpose."); 48 public void flush() throws IOException { 50 throw new IOException("Exception thrown for testing purpose."); 55 // public void write(byte buffer[]) throws IOException { 57 // throw new IOException("Exception thrown for testing purposes."); 65 // public void write(byte buffer[], int offset, int count) throws IOException { 67 // throw new IOException("Exception thrown for testing purposes."); 78 public void write(int oneByte) throws IOException { [all...] |
/packages/apps/Email/emailcommon/src/org/apache/commons/io/input/ |
ProxyInputStream.java | 20 import java.io.IOException;
50 * @throws IOException if an I/O error occurs
52 public int read() throws IOException {
60 * @throws IOException if an I/O error occurs
62 public int read(byte[] bts) throws IOException {
72 * @throws IOException if an I/O error occurs
74 public int read(byte[] bts, int st, int end) throws IOException {
82 * @throws IOException if an I/O error occurs
84 public long skip(long ln) throws IOException {
91 * @throws IOException if an I/O error occurs [all...] |
/packages/apps/Email/emailcommon/src/org/apache/commons/io/output/ |
ProxyWriter.java | 20 import java.io.IOException;
49 * @throws IOException if an I/O error occurs
51 public void write(int idx) throws IOException {
58 * @throws IOException if an I/O error occurs
60 public void write(char[] chr) throws IOException {
69 * @throws IOException if an I/O error occurs
71 public void write(char[] chr, int st, int end) throws IOException {
78 * @throws IOException if an I/O error occurs
80 public void write(String str) throws IOException {
89 * @throws IOException if an I/O error occurs [all...] |
/packages/apps/Email/emailcommon/src/org/apache/james/mime4j/message/ |
BinaryBody.java | 22 import java.io.IOException;
39 * @throws IOException on I/O errors.
41 InputStream getInputStream() throws IOException;
|
TextBody.java | 22 import java.io.IOException;
39 * @throws IOException on I/O errors.
41 Reader getReader() throws IOException;
|
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/ |
ASN1Object.java | 3 import java.io.IOException; 13 * @exception IOException if there is a problem parsing the data. 16 throws IOException 26 throw new IOException("cannot recognise object in stream"); 42 abstract void encode(DEROutputStream out) throws IOException;
|
BERApplicationSpecificParser.java | 3 import java.io.IOException; 18 throws IOException 24 throws IOException 35 catch (IOException e)
|
BERSequenceParser.java | 3 import java.io.IOException; 16 throws IOException 22 throws IOException 33 catch (IOException e)
|
BERSetParser.java | 3 import java.io.IOException; 16 throws IOException 22 throws IOException 33 catch (IOException e)
|
DERSequenceParser.java | 3 import java.io.IOException; 16 throws IOException 22 throws IOException 33 catch (IOException e)
|
DERSetParser.java | 3 import java.io.IOException; 16 throws IOException 22 throws IOException 33 catch (IOException e)
|
/external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/ |
ResourceLoader.java | 21 import java.io.IOException; 48 * @throws IOException if resource fails to open 50 Reader open(String name) throws IOException; 61 * @throws IOException if resource fails to open 63 Reader openOrFail(String name) throws JSilverTemplateNotFoundException, IOException; 69 * @throws IOException if reader fasils to close 71 void close(Reader reader) throws IOException;
|
/frameworks/opt/vcard/java/com/android/vcard/ |
VCardParser.java | 20 import java.io.IOException; 41 * @throws IOException, VCardException 43 public abstract void parse(InputStream is) throws IOException, VCardException; 72 * @throws IOException, VCardException 74 public abstract void parseOne(InputStream is) throws IOException, VCardException; 82 throws IOException, VCardException {
|
/libcore/luni/src/main/java/java/io/ |
FileWriter.java | 38 * @throws IOException 41 public FileWriter(File file) throws IOException { 54 * @throws IOException 57 public FileWriter(File file, boolean append) throws IOException { 76 * @throws IOException 79 public FileWriter(String filename) throws IOException { 92 * @throws IOException 95 public FileWriter(String filename, boolean append) throws IOException {
|
SyncFailedException.java | 24 public class SyncFailedException extends IOException {
|
/libcore/luni/src/test/java/libcore/java/io/ |
OldFilterReaderTest.java | 22 import java.io.IOException; 40 public void close() throws IOException { 44 public void mark(int readLimit) throws IOException { 53 public int read() throws IOException { 58 public int read(char[] buffer, int offset, int count) throws IOException { 63 public boolean ready() throws IOException { 68 public void reset() throws IOException { 72 public long skip(long count) throws IOException { 92 public void test_close() throws IOException { 97 public void test_markI() throws IOException { [all...] |
/libcore/luni/src/test/java/tests/api/org/xml/sax/support/ |
BrokenInputStream.java | 19 import java.io.IOException; 24 * IOException after having read a specified number of bytes. Used for 41 public int read() throws IOException { 43 throw new IOException("Injected exception"); 51 public void close() throws IOException {
|