HomeSort by relevance Sort by last modified time
    Searched refs:IOException (Results 126 - 150 of 5039) sorted by null

1 2 3 4 56 7 8 91011>>

  /libcore/luni/src/main/java/java/nio/channels/
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/UnifiedEmail/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/UnifiedEmail/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/UnifiedEmail/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;
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/
FsDirectoryEntry.java 22 import java.io.IOException;
65 * @throws IOException if an error occurs retrieving the time stamp
67 public long getLastModified() throws IOException;
73 * @throws IOException on error retrieving the time stamp
75 public long getCreated() throws IOException;
81 * @throws IOException on error retrieving the last access time
83 public long getLastAccessed() throws IOException;
103 * @throws IOException on error setting the new name
105 public void setName(String newName) throws IOException;
111 * @throws IOException on write erro
    [all...]
UnknownFileSystemException.java 21 import java.io.IOException;
29 public final class UnknownFileSystemException extends IOException {
  /external/jmonkeyengine/engine/src/core/com/jme3/util/
LittleEndien.java 57 public int read() throws IOException {
62 public int read(byte[] buf) throws IOException {
67 public int read(byte[] buf, int off, int len) throws IOException {
71 public int readUnsignedShort() throws IOException {
78 public long readUInt() throws IOException {
85 public boolean readBoolean() throws IOException {
89 public byte readByte() throws IOException {
93 public int readUnsignedByte() throws IOException {
97 public short readShort() throws IOException {
101 public char readChar() throws IOException {
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
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/base/core/java/android/nfc/tech/
TagTechnology.java 22 import java.io.IOException;
73 * (including {@link #connect} with {@link IOException}.
75 * {@link #connect} will return {@link IOException}.
170 * {@link IOException} by calling {@link #close} from another thread.
178 * @throws IOException if there is an I/O failure, or connect is canceled
180 public void connect() throws IOException;
188 * {@link IOException} by calling {@link #close} from another thread.
195 * @throws IOException if there is an I/O failure, or connect is canceled
198 public void reconnect() throws IOException;
203 * return with {@link IOException}
    [all...]
  /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 {
  /packages/apps/Exchange/src/com/android/exchange/adapter/
SendMailParser.java 3 import java.io.IOException;
10 public SendMailParser(final InputStream in, final int startTag) throws IOException {
23 public boolean parse() throws IOException {
25 throw new IOException();

Completed in 1174 milliseconds

1 2 3 4 56 7 8 91011>>