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

1 2 3 4 5 6 78 91011>>

  /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 {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1Primitive.java 3 import java.io.IOException;
18 * @exception IOException if there is a problem parsing the data.
21 throws IOException
31 throw new IOException("cannot recognise object in stream");
64 abstract int encodedLength() throws IOException;
66 abstract void encode(ASN1OutputStream out) throws IOException;
BERTaggedObjectParser.java 3 import java.io.IOException;
35 throws IOException
41 throw new IOException("Explicit tags must be constructed (see X.690 8.14.2)");
50 throws IOException
61 catch (IOException e)
  /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 {
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 {
91 * @throws IOException
95 public void flush() throws IOException {
  /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;
Reader.java 73 * @throws IOException
76 public abstract void close() throws IOException;
84 * This default implementation simply throws an {@code IOException};
92 * @throws IOException
97 public void mark(int readLimit) throws IOException {
98 throw new IOException();
119 * @throws IOException
122 public int read() throws IOException {
137 * @throws IOException
140 public int read(char[] buffer) throws IOException {
    [all...]
FilterReader.java 51 * @throws IOException
55 public void close() throws IOException {
72 * @throws IOException
78 public synchronized void mark(int readlimit) throws IOException {
108 * @throws IOException
112 public int read() throws IOException {
124 * @throws IOException
128 public int read(char[] buffer, int offset, int count) throws IOException {
142 * @throws IOException
146 public boolean ready() throws IOException {
    [all...]
  /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/Nfc/nci/src/com/android/nfc/dhimpl/
NativeLlcpServiceSocket.java 22 import java.io.IOException;
40 public LlcpSocket accept() throws IOException {
42 if (socket == null) throw new IOException();
48 public void close() throws IOException {
50 throw new IOException();
NativeLlcpSocket.java 21 import java.io.IOException;
37 public void connectToSap(int sap) throws IOException {
39 throw new IOException();
45 public void connectToService(String serviceName) throws IOException {
47 throw new IOException();
53 public void close() throws IOException {
55 throw new IOException();
61 public void send(byte[] data) throws IOException {
63 throw new IOException();
69 public int receive(byte[] recvBuff) throws IOException {
    [all...]
NativeLlcpConnectionlessSocket.java 22 import java.io.IOException;
53 public void send(int sap, byte[] data) throws IOException {
55 throw new IOException();
60 public LlcpPacket receive() throws IOException {
63 throw new IOException();
73 public void close() throws IOException {
75 throw new IOException();
  /packages/apps/Nfc/nxp/src/com/android/nfc/dhimpl/
NativeLlcpServiceSocket.java 22 import java.io.IOException;
40 public LlcpSocket accept() throws IOException {
42 if (socket == null) throw new IOException();
48 public void close() throws IOException {
50 throw new IOException();
NativeLlcpSocket.java 21 import java.io.IOException;
37 public void connectToSap(int sap) throws IOException {
39 throw new IOException();
45 public void connectToService(String serviceName) throws IOException {
47 throw new IOException();
53 public void close() throws IOException {
55 throw new IOException();
61 public void send(byte[] data) throws IOException {
63 throw new IOException();
69 public int receive(byte[] recvBuff) throws IOException {
    [all...]
NativeLlcpConnectionlessSocket.java 22 import java.io.IOException;
53 public void send(int sap, byte[] data) throws IOException {
55 throw new IOException();
60 public LlcpPacket receive() throws IOException {
63 throw new IOException();
73 public void close() throws IOException {
75 throw new IOException();
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/
AbstractContentHandler.java 22 import java.io.IOException;
51 public void body(BodyDescriptor bd, InputStream is) throws IOException {
75 public void epilogue(InputStream is) throws IOException {
87 public void preamble(InputStream is) throws IOException {
111 public void raw(InputStream is) throws IOException {
ContentHandler.java 22 import java.io.IOException;
126 * @throws IOException should be thrown on I/O errors.
128 void preamble(InputStream is) throws IOException;
135 * @throws IOException should be thrown on I/O errors.
137 void epilogue(InputStream is) throws IOException;
164 * @throws IOException should be thrown on I/O errors.
166 void body(BodyDescriptor bd, InputStream is) throws IOException;
173 * @throws IOException should be thrown on I/O errors.
176 void raw(InputStream is) throws IOException;
  /external/apache-harmony/x-net/src/test/impl/java.injected/javax/net/
ServerSocketFactoryTest.java 24 import java.io.IOException;
47 } catch (IOException e) {
64 } catch (IOException e) {
69 } catch (IOException e) {
74 } catch (IOException e) {
80 public ServerSocket createServerSocket(int port) throws IOException, UnknownHostException {
81 throw new IOException();
86 throws IOException, UnknownHostException {
87 throw new IOException();
91 public ServerSocket createServerSocket(int port, int backlog, InetAddress ifAddress) throws IOException {
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/
MockDatagramChannel.java 20 import java.io.IOException;
41 public DatagramChannel connect(SocketAddress arg0) throws IOException {
45 public DatagramChannel disconnect() throws IOException {
49 public SocketAddress receive(ByteBuffer arg0) throws IOException {
53 public int send(ByteBuffer arg0, SocketAddress arg1) throws IOException {
57 public int read(ByteBuffer arg0) throws IOException {
61 public long read(ByteBuffer[] arg0, int arg1, int arg2) throws IOException {
65 public int write(ByteBuffer arg0) throws IOException {
69 public long write(ByteBuffer[] arg0, int arg1, int arg2) throws IOException {
73 protected void implCloseSelectableChannel() throws IOException {
    [all...]
  /libcore/luni/src/main/java/java/nio/channels/
SocketChannel.java 20 import java.io.IOException;
77 * @throws IOException
80 public static SocketChannel open() throws IOException {
104 * @throws IOException
107 public static SocketChannel open(SocketAddress address) throws IOException {
187 * @throws IOException
190 public abstract boolean connect(SocketAddress address) throws IOException;
221 * @throws IOException
224 public abstract boolean finishConnect() throws IOException;
252 * @throws IOException
    [all...]
  /libcore/support/src/test/java/tests/support/
Support_ASimpleInputStream.java 3 import java.io.IOException;
48 public void close() throws IOException {
50 throw new IOException("Exception thrown for testing purpose.");
55 public int available() throws IOException {
57 throw new IOException("Exception thrown for testing purpose.");
63 public int read() throws IOException {
65 throw new IOException("Exception thrown for testing purpose.");
Support_ASimpleReader.java 3 import java.io.IOException;
41 public void close() throws IOException {
43 throw new IOException("Exception thrown for testing purpose.");
48 public boolean ready() throws IOException {
50 throw new IOException("Exception thrown for testing purpose.");
56 public int read(char[] dest, int offset, int count) throws IOException {
58 throw new IOException("Exception thrown for testing purpose.");
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/util/
PartialInputStream.java 24 import java.io.IOException;
29 public PartialInputStream(InputStream inputStream, long offset, long length) throws IOException {
35 public int available() throws IOException {
39 public int read() throws IOException {
46 public int read(byte b[]) throws IOException {
50 public int read(byte b[], int off, int len) throws IOException {
55 public long skip(long n) throws IOException {

Completed in 267 milliseconds

1 2 3 4 5 6 78 91011>>