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

1 2

  /libcore/luni/src/main/java/java/io/
EOFException.java 24 public class EOFException extends IOException {
29 * Constructs a new {@code EOFException} with its stack trace filled in.
31 public EOFException() {
35 * Constructs a new {@code EOFException} with its stack trace and detail
41 public EOFException(String detailMessage) {
DataInputStream.java 69 throw new EOFException();
77 throw new EOFException();
159 throw new EOFException();
190 * This method will not throw an {@link EOFException} if the end of the
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
IndefiniteLengthInputStream.java 3 import java.io.EOFException;
28 throw new EOFException();
70 throw new EOFException();
82 throw new EOFException();
101 throw new EOFException();
  /dalvik/dx/src/com/android/dx/io/instructions/
ShortArrayCodeInput.java 19 import java.io.EOFException;
46 public int read() throws EOFException {
52 throw new EOFException();
57 public int readInt() throws EOFException {
65 public long readLong() throws EOFException {
  /external/dexmaker/src/dx/java/com/android/dx/io/instructions/
ShortArrayCodeInput.java 19 import java.io.EOFException;
46 public int read() throws EOFException {
52 throw new EOFException();
57 public int readInt() throws EOFException {
65 public long readLong() throws EOFException {
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
ChannelHelper.java 18 import java.io.EOFException;
63 throw new EOFException("End of file. No more boxes.");
74 throw new EOFException();
  /external/guava/guava/src/com/google/common/io/
LittleEndianDataInputStream.java 26 import java.io.EOFException;
83 throw new EOFException();
220 * @throws EOFException if the end of file (EOF) is encountered.
222 private byte readAndCheckByte() throws IOException, EOFException {
226 throw new EOFException();
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/
StrictLineReader.java 21 import java.io.EOFException;
31 * "\n" or "\r\n". End of input is reported by throwing {@code EOFException}. Unterminated line at
33 * to detect it after catching the {@code EOFException}.
123 * @throws EOFException for the end of source stream.
161 // Mark unterminated line in case fillBuf throws EOFException or IOException.
183 * @throws EOFException for the end of source stream.
201 throw new EOFException();
  /external/smack/src/org/xbill/DNS/
TCPClient.java 58 throw new EOFException();
85 throw new EOFException();
UDPClient.java 132 throw new EOFException();
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
CountedDataInputStream.java 19 import java.io.EOFException;
72 if (skip(length) != length) throw new EOFException();
84 if (r != len) throw new EOFException();
  /frameworks/base/services/java/com/android/server/
RandomBlock.java 23 import java.io.EOFException;
58 throw new EOFException();
  /libcore/luni/src/main/java/libcore/io/
StrictLineReader.java 21 import java.io.EOFException;
31 * "\n" or "\r\n". End of input is reported by throwing {@code EOFException}. Unterminated line at
33 * to detect it after catching the {@code EOFException}.
149 * @throws EOFException for the end of source stream.
184 // Mark unterminated line in case fillBuf throws EOFException or IOException.
206 * @throws EOFException for the end of source stream.
219 * end-of-input with EOFException. The value is meaningless in any other situation.
232 * @throws EOFException for the end of source stream.
237 throw new EOFException();
Streams.java 20 import java.io.EOFException;
57 * Fills 'dst' with bytes from 'in', throwing EOFException if insufficient bytes are available.
65 * EOFException if insufficient bytes are available.
83 throw new EOFException();
193 * @throws java.io.EOFException if the stream is exhausted before the next newline
203 throw new EOFException();
  /packages/apps/Camera2/src/com/android/camera/exif/
CountedDataInputStream.java 19 import java.io.EOFException;
72 if (skip(length) != length) throw new EOFException();
84 if (r != len) throw new EOFException();
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
CountedDataInputStream.java 19 import java.io.EOFException;
72 if (skip(length) != length) throw new EOFException();
84 if (r != len) throw new EOFException();
  /packages/apps/Launcher3/src/com/android/gallery3d/exif/
CountedDataInputStream.java 19 import java.io.EOFException;
72 if (skip(length) != length) throw new EOFException();
84 if (r != len) throw new EOFException();
  /packages/apps/Mms/src/com/android/mms/exif/
CountedDataInputStream.java 19 import java.io.EOFException;
72 if (skip(length) != length) throw new EOFException();
84 if (r != len) throw new EOFException();
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/input/
NullInputStream.java 19 import java.io.EOFException;
75 * which supports marking and does not throw EOFException.
91 * will throw an {@link EOFException} or return -1 when the
176 * @throws EOFException if the end of file is reached and
198 * @throws EOFException if the end of file is reached and
215 * @throws EOFException if the end of file is reached and
267 * @throws EOFException if the end of file is reached and
318 * @throws EOFException if <code>throwEofException</code> is set
321 private int doEndOfFile() throws EOFException {
324 throw new EOFException();
    [all...]
NullReader.java 19 import java.io.EOFException;
75 * which supports marking and does not throw EOFException.
91 * will throw an {@link EOFException} or return -1 when the
160 * @throws EOFException if the end of file is reached and
182 * @throws EOFException if the end of file is reached and
199 * @throws EOFException if the end of file is reached and
251 * @throws EOFException if the end of file is reached and
302 * @throws EOFException if <code>throwEofException</code> is set
305 private int doEndOfFile() throws EOFException {
308 throw new EOFException();
    [all...]
SwappedDataInputStream.java 20 import java.io.EOFException;
54 * @throws EOFException if an end of file is reached unexpectedly
57 throws IOException, EOFException
66 * @throws EOFException if an end of file is reached unexpectedly
69 throws IOException, EOFException
78 * @throws EOFException if an end of file is reached unexpectedly
81 throws IOException, EOFException
90 * @throws EOFException if an end of file is reached unexpectedly
93 throws IOException, EOFException
102 * @throws EOFException if an end of file is reached unexpectedly
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
Base64Reader.java 21 import java.io.EOFException;
62 throw new EOFException();
  /development/samples/training/threadsample/src/com/example/android/threadsample/
PhotoDownloadRunnable.java 21 import java.io.EOFException;
315 throw new EOFException();
  /libcore/luni/src/main/java/java/util/zip/
GZIPInputStream.java 20 import java.io.EOFException;
118 throw new EOFException();
202 throw new EOFException();
217 throw new EOFException();
InflaterInputStream.java 20 import java.io.EOFException;
169 throw new EOFException();
175 throw new EOFException();

Completed in 1236 milliseconds

1 2