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

1 2 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/java/io/
DataInput.java 55 * @throws IOException
59 public abstract boolean readBoolean() throws IOException;
67 * @throws IOException
71 public abstract byte readByte() throws IOException;
79 * @throws IOException
83 public abstract char readChar() throws IOException;
91 * @throws IOException
95 public abstract double readDouble() throws IOException;
103 * @throws IOException
107 public abstract float readFloat() throws IOException;
    [all...]
DataOutput.java 38 * @throws IOException
41 public abstract void write(byte[] buffer) throws IOException;
53 * @throws IOException
56 public abstract void write(byte[] buffer, int offset, int count) throws IOException;
63 * @throws IOException
67 public abstract void write(int oneByte) throws IOException;
74 * @throws IOException
78 public abstract void writeBoolean(boolean val) throws IOException;
85 * @throws IOException
90 public abstract void writeByte(int val) throws IOException;
    [all...]
ObjectInput.java 32 * @throws IOException
35 public int available() throws IOException;
41 * @throws IOException
44 public void close() throws IOException;
52 * @throws IOException
55 public int read() throws IOException;
62 * @throws IOException
65 public int read(byte[] buffer) throws IOException;
73 * @throws IOException
76 public int read(byte[] buffer, int byteOffset, int byteCount) throws IOException;
    [all...]
Flushable.java 29 * @throws IOException
32 void flush() throws IOException;
ObjectOutput.java 31 * @throws IOException
34 public void close() throws IOException;
40 * @throws IOException
43 public void flush() throws IOException;
51 * @throws IOException
54 public void write(byte[] buffer) throws IOException;
68 * @throws IOException
71 public void write(byte[] buffer, int offset, int count) throws IOException;
80 * @throws IOException
83 public void write(int value) throws IOException;
    [all...]
  /external/okhttp/okio/src/main/java/okio/
BufferedSource.java 18 import java.io.IOException;
34 boolean exhausted() throws IOException;
41 void require(long byteCount) throws IOException;
44 byte readByte() throws IOException;
47 short readShort() throws IOException;
50 short readShortLe() throws IOException;
53 int readInt() throws IOException;
56 int readIntLe() throws IOException;
59 long readLong() throws IOException;
62 long readLongLe() throws IOException;
    [all...]
  /external/chromium_org/components/cronet/android/java/src/org/chromium/net/
UrlRequestException.java 7 import java.io.IOException;
12 public class UrlRequestException extends IOException {
ResponseTooLargeException.java 7 import java.io.IOException;
14 public class ResponseTooLargeException extends IOException {
  /external/proguard/src/proguard/io/
Finisher.java 23 import java.io.IOException;
36 public void finish() throws IOException;
DataEntryPump.java 23 import java.io.IOException;
42 throws IOException;
DataEntryReader.java 23 import java.io.IOException;
37 public void read(DataEntry dataEntry) throws IOException;
  /frameworks/base/obex/javax/obex/
BaseStream.java 35 import java.io.IOException;
46 * @throws IOException if the object is closed
48 void ensureOpen() throws IOException;
53 * @throws IOException if the operation is completed
55 void ensureNotDone() throws IOException;
65 * @throws IOException if an IO error occurs
67 boolean continueOperation(boolean sendEmpty, boolean inStream) throws IOException;
73 * @throws IOException if an IO error occurs
75 void streamClosed(boolean inStream) throws IOException;
ObexTransport.java 37 import java.io.IOException;
58 void create() throws IOException;
60 void listen() throws IOException;
62 void close() throws IOException;
64 void connect() throws IOException;
66 void disconnect() throws IOException;
68 InputStream openInputStream() throws IOException;
70 OutputStream openOutputStream() throws IOException;
72 DataInputStream openDataInputStream() throws IOException;
74 DataOutputStream openDataOutputStream() throws IOException;
    [all...]
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/
BlockDevice.java 22 import java.io.IOException;
37 * @throws IOException on error getting the size of this device
39 public abstract long getSize() throws IOException;
46 * @throws IOException on read error
49 throws IOException;
57 * @throws IOException on write error
63 throws ReadOnlyException, IOException,
69 * @throws IOException on write error
71 public abstract void flush() throws IOException;
77 * @throws IOException on error determining the sector siz
    [all...]
FileSystem.java 22 import java.io.IOException;
37 * @throws IOException on read error
39 public FsDirectory getRoot() throws IOException;
53 * @throws IOException on error closing the file system
55 public void close() throws IOException;
69 * @throws IOException if an I/O error occurs
71 public long getTotalSpace() throws IOException;
77 * @throws IOException if an I/O error occurs
79 public long getFreeSpace() throws IOException;
85 * @throws IOException if an I/O error occur
    [all...]
  /external/apache-http/src/org/apache/http/conn/
ConnectionReleaseTrigger.java 33 import java.io.IOException;
70 * @throws IOException
75 throws IOException
83 * @throws IOException in case of an IO problem.
87 throws IOException
  /external/apache-harmony/support/src/test/java/tests/support/
Support_ServerSocket.java 20 import java.io.IOException;
27 public Support_Socket accept() throws IOException;
33 public void open() throws IOException;
35 public void close() throws IOException;
Support_Socket.java 20 import java.io.IOException;
29 public InputStream getInputStream() throws IOException;
31 public OutputStream getOutputStream() throws IOException;
33 public void close() throws IOException;
Support_HttpConnector.java 20 import java.io.IOException;
30 public void open(String address) throws IOException;
32 public void close() throws IOException;
34 public InputStream getInputStream() throws IOException;
36 public OutputStream getOutputStream() throws IOException;
40 public void setRequestProperty(String key, String value) throws IOException;
42 public String getHeaderField(int index) throws IOException;
44 public String getHeaderFieldKey(int index) throws IOException;
  /external/jarjar/src/main/com/tonicsystems/jarjar/
DepHandler.java 19 import java.io.IOException;
26 void handleStart() throws IOException;
27 void handle(PathClass from, PathClass to) throws IOException;
28 void handleEnd() throws IOException;
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
TransportWrapper.java 28 import java.io.IOException;
45 public String startListening(String address) throws IOException;
50 public void stopListening() throws IOException;
59 public void accept(long acceptTimeout, long handshakeTimeout) throws IOException;
69 public void attach(String address, long attachTimeout, long handshakeTimeout) throws IOException;
74 public void close() throws IOException;
88 public byte[] readPacket() throws IOException;
95 public void writePacket(byte[] packet) throws IOException;
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
WriterChain.java 23 import java.io.IOException;
54 public void write(int val) throws IOException;
56 public void write(char[] chars) throws IOException;
58 public void write(char[] chars, int start, int count) throws IOException;
60 public void write(String chars) throws IOException;
62 public void write(String chars, int start, int count) throws IOException;
64 public void flush() throws IOException;
66 public void close() throws IOException;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
InMemoryRepresentable.java 3 import java.io.IOException;
8 throws IOException;
  /libcore/luni/src/main/java/java/nio/channels/
InterruptibleChannel.java 19 import java.io.IOException;
47 * @throws IOException
50 public void close() throws IOException;
  /external/apache-http/src/org/apache/http/
HttpServerConnection.java 34 import java.io.IOException;
61 * @throws IOException
64 throws HttpException, IOException;
71 * @throws IOException
74 throws HttpException, IOException;
80 * @throws IOException
83 throws HttpException, IOException;
89 * @throws IOException
92 throws HttpException, IOException;
96 * @throws IOException
    [all...]

Completed in 887 milliseconds

1 2 3 4 5 6 7 8 91011>>