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

1 2 3 4 56 7 8 91011>>

  /packages/apps/Email/emailcommon/src/org/apache/commons/io/input/
SwappedDataInputStream.java 21 import java.io.IOException;
53 * @throws IOException if an I/O error occurs
57 throws IOException, EOFException
65 * @throws IOException if an I/O error occurs
69 throws IOException, EOFException
77 * @throws IOException if an I/O error occurs
81 throws IOException, EOFException
89 * @throws IOException if an I/O error occurs
93 throws IOException, EOFException
101 * @throws IOException if an I/O error occurs
    [all...]
  /cts/libs/vogar-expect/src/vogar/util/
IoUtils.java 20 import java.io.IOException;
29 } catch (IOException ignored) {
38 } catch (IOException ignored) {
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
DSAEncoder.java 4 import java.io.IOException;
9 throws IOException;
12 throws IOException;
  /external/emma/core/java12/com/vladium/jcd/lib/
UDataInputStream.java 12 import java.io.IOException;
36 public final int readU2 () throws IOException
44 public final long readU4 () throws IOException
UDataOutputStream.java 12 import java.io.IOException;
36 public final void writeU2 (final int uint) throws IOException
42 public final void writeU4 (final long ulong) throws IOException
  /external/guava/src/com/google/common/io/
AppendableWriter.java 22 import java.io.IOException;
51 throws IOException {
58 @Override public void flush() throws IOException {
65 @Override public void close() throws IOException {
77 @Override public void write(int c) throws IOException {
82 @Override public void write(String str) throws IOException {
87 @Override public void write(String str, int off, int len) throws IOException {
93 @Override public Writer append(char c) throws IOException {
99 @Override public Writer append(CharSequence charSeq) throws IOException {
106 throws IOException {
    [all...]
  /frameworks/base/core/java/android/app/backup/
FullBackupAgent.java 20 import java.io.IOException;
32 ParcelFileDescriptor newState) throws IOException {
38 throws IOException {
  /frameworks/base/core/java/android/speech/srec/
MicrophoneInputStream.java 23 import java.io.IOException;
46 public MicrophoneInputStream(int sampleRate, int fifoDepth) throws IOException {
48 if (mAudioRecord == 0) throw new IOException("AudioRecord constructor failed - busy?");
52 throw new IOException("AudioRecord start failed: " + status);
57 public int read() throws IOException {
64 public int read(byte[] b) throws IOException {
70 public int read(byte[] b, int offset, int length) throws IOException {
80 public void close() throws IOException {
98 throw new IOException("someone forgot to close MicrophoneInputStream");
107 private static native int AudioRecordRead(int audioRecord, byte[] b, int offset, int length) throws IOException;
    [all...]
  /libcore/luni/src/main/java/java/net/
CacheResponse.java 19 import java.io.IOException;
35 * @throws IOException
39 public abstract InputStream getBody() throws IOException;
50 * @throws IOException
54 public abstract Map<String, List<String>> getHeaders() throws IOException;
  /libcore/luni/src/main/java/java/nio/channels/
DatagramChannel.java 20 import java.io.IOException;
62 * @throws IOException
65 public static DatagramChannel open() throws IOException {
124 * @throws IOException
128 throws IOException;
139 * @throws IOException
142 public abstract DatagramChannel disconnect() throws IOException;
175 * @throws IOException
178 public abstract SocketAddress receive(ByteBuffer target) throws IOException;
213 * @throws IOException
    [all...]
GatheringByteChannel.java 19 import java.io.IOException;
50 * @throws IOException
56 public long write(ByteBuffer[] buffers) throws IOException;
88 * @throws IOException
94 throws IOException;
ScatteringByteChannel.java 19 import java.io.IOException;
46 * @throws IOException
52 public long read(ByteBuffer[] buffers) throws IOException;
82 * @throws IOException
89 throws IOException;
  /libcore/support/src/test/java/tests/support/
Support_OutputStream.java 3 import java.io.IOException;
9 * be instructed to throw an {@code IOException} whenever a method is called.
10 * This is used to test the {@code IOException} handling of classes that write
42 public void close() throws IOException {
44 throw new IOException("Exception thrown for testing purposes.");
50 public void flush() throws IOException {
52 throw new IOException("Exception thrown for testing purposes.");
58 public void write(byte buffer[]) throws IOException {
60 throw new IOException("Exception thrown for testing purposes.");
68 public void write(byte buffer[], int offset, int count) throws IOException {
    [all...]
  /packages/apps/Email/emailcommon/src/org/apache/commons/io/output/
ClosedOutputStream.java 19 import java.io.IOException;
41 * Throws an {@link IOException} to indicate that the stream is closed.
44 * @throws IOException always thrown
46 public void write(int b) throws IOException {
47 throw new IOException("write(" + b + ") failed: stream is closed");
  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/util/
TempFile.java 22 import java.io.IOException;
39 * @throws IOException
41 InputStream getInputStream() throws IOException;
52 * @throws IOException
54 OutputStream getOutputStream() throws IOException;
  /external/proguard/src/proguard/classfile/io/
RuntimeDataInput.java 50 catch (IOException ex)
62 catch (IOException ex)
74 catch (IOException ex)
86 catch (IOException ex)
98 catch (IOException ex)
110 catch (IOException ex)
122 catch (IOException ex)
134 catch (IOException ex)
146 catch (IOException ex)
158 catch (IOException ex
    [all...]
  /cts/tools/signature-tools/test/signature/converter/util/
ITestSourceConverter.java 19 import java.io.IOException;
26 IApi convert(Set<CompilationUnit> units) throws IOException;
27 IApi convert(CompilationUnit... units) throws IOException;
28 IApi convert(Visibility visibility, Set<CompilationUnit> units) throws IOException;
29 IApi convert(Visibility visibility, CompilationUnit... units) throws IOException;
  /external/apache-http/src/org/apache/http/impl/io/
IdentityInputStream.java 34 import java.io.IOException;
62 public int available() throws IOException {
70 public void close() throws IOException {
74 public int read() throws IOException {
82 public int read(final byte[] b, int off, int len) throws IOException {
  /frameworks/base/core/java/android/bluetooth/
BluetoothInputStream.java 19 import java.io.IOException;
39 public int available() throws IOException {
43 public void close() throws IOException {
54 * @throws IOException
55 * if the stream is closed or another IOException occurs.
58 public int read() throws IOException {
85 * @throws IOException
86 * if the stream is closed or another IOException occurs.
89 public int read(byte[] b, int offset, int length) throws IOException {
  /frameworks/base/core/java/android/net/
LocalSocket.java 20 import java.io.IOException;
65 * but not in a context where IOException cannot be thrown"
67 * @throws IOException from SocketImpl.create()
69 private void implCreateIfNeeded() throws IOException {
88 * @throws IOException if socket is in invalid state or the address does
91 public void connect(LocalSocketAddress endpoint) throws IOException {
94 throw new IOException("already connected");
109 * @throws IOException
111 public void bind(LocalSocketAddress bindpoint) throws IOException {
116 throw new IOException("already bound")
    [all...]
  /libcore/luni/src/main/java/java/io/
OutputStream.java 60 * @throws IOException
63 public void close() throws IOException {
71 * @throws IOException
74 public void flush() throws IOException {
81 public void write(byte[] buffer) throws IOException {
96 * @throws IOException
103 public void write(byte[] buffer, int offset, int count) throws IOException {
116 * @throws IOException
119 public abstract void write(int oneByte) throws IOException;
  /libcore/luni/src/main/java/java/security/
AlgorithmParametersSpi.java 20 import java.io.IOException;
53 * @throws IOException
57 protected abstract void engineInit(byte[] params) throws IOException;
67 * @throws IOException
72 throws IOException;
96 * @throws IOException
100 protected abstract byte[] engineGetEncoded() throws IOException;
108 * @throws IOException
113 throws IOException;
  /libcore/luni/src/main/java/javax/net/
DefaultServerSocketFactory.java 20 import java.io.IOException;
27 public ServerSocket createServerSocket() throws IOException {
32 public ServerSocket createServerSocket(int port) throws IOException {
37 public ServerSocket createServerSocket(int port, int backlog) throws IOException {
43 throws IOException {
ServerSocketFactory.java 20 import java.io.IOException;
57 * @throws IOException
60 public ServerSocket createServerSocket() throws IOException {
71 * @throws IOException
74 public abstract ServerSocket createServerSocket(int port) throws IOException;
84 * @throws IOException if an error occurs while creating a new server socket.
86 public abstract ServerSocket createServerSocket(int port, int backlog) throws IOException;
98 * @throws IOException if an error occurs while creating a new server socket.
101 throws IOException;
  /packages/apps/Browser/src/com/android/browser/
SnapshotByteArrayOutputStream.java 19 import java.io.IOException;
34 public synchronized void write(int oneByte) throws IOException {
40 public void write(byte[] buffer, int offset, int count) throws IOException {
45 private void checkError(int expandBy) throws IOException {
47 throw new IOException("Exceeded max size!");

Completed in 2270 milliseconds

1 2 3 4 56 7 8 91011>>