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

1 2 3

  /libcore/luni/src/main/java/java/io/
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) {
InputStream.java 83 * @throws IOException if this stream is closed or an error occurs
85 public int available() throws IOException {
93 * @throws IOException
96 public void close() throws IOException {
138 * @throws IOException
139 * if the stream is closed or another IOException occurs.
141 public abstract int read() throws IOException;
150 * @throws IOException
151 * if this stream is closed or another IOException occurs.
153 public int read(byte[] b) throws IOException {
    [all...]
Reader.java 74 * @throws IOException
77 public abstract void close() throws IOException;
85 * This default implementation simply throws an {@code IOException};
93 * @throws IOException
98 public void mark(int readLimit) throws IOException {
99 throw new IOException();
120 * @throws IOException
123 public int read() throws IOException {
142 * @throws IOException
145 public int read(char[] buf) throws IOException {
    [all...]
FileOutputStream.java 172 * @throws IOException
176 public void close() throws IOException {
202 * @throws IOException
205 @Override protected void finalize() throws IOException {
236 * @throws IOException
240 public final FileDescriptor getFD() throws IOException {
250 * @throws IOException
255 public void write(byte[] buffer) throws IOException {
273 * @throws IOException
280 public void write(byte[] buffer, int offset, int count) throws IOException {
    [all...]
PushbackInputStream.java 83 public int available() throws IOException {
85 throw new IOException();
94 * @throws IOException
98 public void close() throws IOException {
129 * @throws IOException
134 public int read() throws IOException {
136 throw new IOException();
167 * @throws IOException
174 public int read(byte[] buffer, int offset, int length) throws IOException {
211 private IOException streamClosed() throws IOException
    [all...]
FileInputStream.java 136 public int available() throws IOException {
144 * @throws IOException
148 public void close() throws IOException {
166 * @throws IOException
169 @Override protected void finalize() throws IOException {
208 * @throws IOException
212 public final FileDescriptor getFD() throws IOException {
222 * @throws IOException
226 public int read() throws IOException {
240 * @throws IOException
    [all...]
  /libcore/luni/src/test/java/tests/api/java/io/
IOExceptionTest.java 20 import java.io.IOException;
26 @TestTargetClass(IOException.class)
30 * @tests java.io.IOException#IOException()
35 method = "IOException",
41 throw new IOException();
42 fail("Test 1: IOException expected.");
43 } catch (IOException e) {
50 * @tests java.io.IOException#IOException(java.lang.String
    [all...]
ObjectStreamClassTest.java 22 import java.io.IOException;
225 public void readExternal(ObjectInput input) throws IOException, ClassNotFoundException {
229 public void writeExternal(ObjectOutput output) throws IOException {
230 throw new IOException();
  /libcore/support/src/test/java/tests/support/
ThrowingReader.java 21 import java.io.IOException;
38 @Override public int read() throws IOException {
46 throws IOException {
58 private void explodeIfNecessary() throws IOException {
61 throw new IOException();
  /packages/apps/Email/src/com/android/exchange/adapter/
MeetingResponseParser.java 20 import java.io.IOException;
29 public MeetingResponseParser(InputStream in, EasSyncService service) throws IOException {
34 public void parseResult() throws IOException {
50 public boolean parse() throws IOException {
53 throw new IOException();
GalParser.java 21 import java.io.IOException;
31 public GalParser(InputStream in, EasSyncService service) throws IOException {
41 public boolean parse() throws IOException {
43 throw new IOException();
55 public void parseProperties(GalResult galResult) throws IOException {
72 public void parseResult(GalResult galResult) throws IOException {
82 public void parseResponse(GalResult galResult) throws IOException {
92 public void parseStore(GalResult galResult) throws IOException {
PingParser.java 23 import java.io.IOException;
47 public PingParser(InputStream in, EasSyncService service) throws IOException {
52 public void parsePingFolders(ArrayList<String> syncList) throws IOException {
66 public boolean parse() throws IOException, StaleFolderListException, IllegalHeartbeatException {
69 throw new IOException();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/io/
IFileWrapper.java 30 import java.io.IOException;
64 public void close() throws IOException {
71 throw new IOException();
  /frameworks/base/core/java/com/android/internal/nfc/
LlcpServiceSocket.java 19 import java.io.IOException;
95 * @throws IOException
102 public LlcpSocket accept() throws IOException, LlcpException {
109 throw new IOException();
LlcpConnectionlessSocket.java 19 import java.io.IOException;
60 * @throws IOException if the LLCP link has been lost or deactivated.
62 public void sendTo(LlcpPacket packet) throws IOException {
67 throw new IOException();
78 * @throws IOException if the LLCP link has been lost or deactivated.
81 public LlcpPacket receiveFrom() throws IOException {
88 throw new IOException();
LlcpSocket.java 19 import java.io.IOException;
93 * @throws IOException
99 public void connect(int sap) throws IOException, LlcpException {
105 throw new IOException();
120 * @throws IOException
126 public void connect(String sn) throws IOException, LlcpException {
132 throw new IOException();
146 * @throws IOException
149 public void close() throws IOException {
154 throw new IOException();
    [all...]
  /frameworks/base/core/java/android/nfc/
NdefTagConnection.java 19 import java.io.IOException;
78 * @throws IOException if the target is lost or connection closed
81 public NdefMessage[] readNdefMessages() throws IOException, FormatException {
90 throw new IOException();
95 throw new IOException();
120 * @throws IOException if the target is lost or connection closed or the
123 public void writeNdefMessage(NdefMessage message) throws IOException, FormatException {
130 throw new IOException();
135 throw new IOException();
148 * @throws IOException if the target is lost, or connection close
    [all...]
  /libcore/luni/src/main/java/java/util/zip/
DeflaterInputStream.java 21 import java.io.IOException;
88 public void close() throws IOException {
101 public int read() throws IOException {
124 public int read(byte[] b, int off, int len) throws IOException {
171 public long skip(long n) throws IOException {
205 * @throws IOException if this stream is closed or an error occurs
208 public int available() throws IOException {
230 * This operation is not supported and throws {@code IOException}.
233 public void reset() throws IOException {
234 throw new IOException();
    [all...]
DeflaterOutputStream.java 21 import java.io.IOException;
131 * @throws IOException
134 protected void deflate() throws IOException {
147 * @throws IOException
152 public void close() throws IOException {
164 * @throws IOException
167 public void finish() throws IOException {
184 public void write(int i) throws IOException {
200 * @throws IOException
204 public void write(byte[] buffer, int off, int nbytes) throws IOException {
    [all...]
InflaterInputStream.java 22 import java.io.IOException;
125 * @throws IOException
129 public int read() throws IOException {
148 * @throws IOException
149 * if an IOException occurs.
152 public int read(byte[] buffer, int off, int nbytes) throws IOException {
202 throw (IOException) (new IOException().initCause(e));
210 * @throws IOException
211 * if an {@code IOException} occurs
    [all...]
InflaterOutputStream.java 21 import java.io.IOException;
87 public void close() throws IOException {
97 public void flush() throws IOException {
106 * @throws IOException if an I/O error occurs, or the stream has been closed
108 public void finish() throws IOException {
119 * @throws IOException if an I/O error occurs, or the stream has been closed
123 public void write(int b) throws IOException, ZipException {
135 * @throws IOException if an I/O error occurs, or the stream has been closed
141 public void write(byte[] b, int off, int len) throws IOException, ZipException {
154 private void write() throws IOException, ZipException
    [all...]
  /build/tools/droiddoc/src/
ClearPage.java 24 import java.io.IOException;
136 catch (IOException e) {
144 catch (IOException e) {
166 throw new IOException();
170 catch (IOException e) {
178 catch (IOException e) {
191 catch (IOException e) {
200 catch (IOException e) {
211 catch (IOException e) {
216 catch (IOException e)
    [all...]
  /frameworks/base/media/java/android/drm/mobile1/
DrmRawContent.java 131 public DrmRawContent(InputStream inRawdata, int len, String mimeTypeStr) throws DrmException, IOException {
282 public int available() throws IOException {
287 throw new IOException();
295 throw new IOException();
303 public int read() throws IOException {
317 public int read(byte[] b) throws IOException {
324 public int read(byte[] b, int off, int len) throws IOException {
330 throw new IOException();
338 throw new IOException();
363 public void reset() throws IOException {
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/jar/
JarURLConnectionImpl.java 24 import java.io.IOException;
69 * @throws IOException
73 IOException {
83 public void connect() throws IOException {
96 * @throws IOException
101 public JarFile getJarFile() throws IOException {
109 * @throws IOException
112 private void findJarFile() throws IOException {
135 throw new IOException();
140 JarFile openJarFile() throws IOException {
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/io/
WriterTest.java 18 import java.io.IOException;
28 public void test_appendChar() throws IOException {
40 public void test_appendCharSequence() throws IOException {
52 public void test_appendCharSequenceIntInt() throws IOException {
67 public void test_writeLjava_lang_String() throws IOException {
84 public synchronized void close() throws IOException {
89 public synchronized void flush() throws IOException {
94 public void write(char[] arg0, int arg1, int arg2) throws IOException {
113 public synchronized void close() throws IOException {
118 public synchronized void flush() throws IOException {
    [all...]

Completed in 213 milliseconds

1 2 3