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

1 2 3 4

  /libcore/ojluni/src/main/java/java/io/
EOFException.java 42 class EOFException extends IOException {
46 * Constructs an <code>EOFException</code> with <code>null</code>
49 public EOFException() {
54 * Constructs an <code>EOFException</code> with the specified detail
61 public EOFException(String s) {
  /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;
48 public int read() throws EOFException {
54 throw new EOFException();
60 public int readInt() throws EOFException {
69 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();
  /packages/services/Car/tests/obd2_test/src/com/android/car/obd2/test/
MockObd2UnderlyingTransport.java 21 import java.io.EOFException;
37 else throw new EOFException();
  /external/glide/third_party/disklrucache/src/main/java/com/bumptech/glide/disklrucache/
StrictLineReader.java 21 import java.io.EOFException;
31 * with "\n" or "\r\n". End of input is reported by throwing {@code EOFException}. Unterminated
33 * hasUnterminatedLine()} to detect it after catching the {@code EOFException}.
123 * @throws EOFException for the end of source stream.
162 // Mark unterminated line in case fillBuf throws EOFException or IOException.
190 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();
CharStreams.java 25 import java.io.EOFException;
158 * @throws EOFException if this stream reaches the end before skipping all
169 throw new EOFException();
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/common/
DecoderUtil.java 14 import java.io.EOFException;
100 throw new EOFException();
111 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/core/java/com/android/server/
RandomBlock.java 23 import java.io.EOFException;
58 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/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 unexpectedl
    [all...]
  /tools/apkzlib/src/test/java/com/android/tools/build/apkzlib/utils/
ApkZFileTestUtils.java 27 import java.io.EOFException;
61 throw new EOFException();
  /development/samples/training/threadsample/src/com/example/android/threadsample/
PhotoDownloadRunnable.java 21 import java.io.EOFException;
315 throw new EOFException();
  /external/okhttp/okio/okio/src/main/java/okio/
GzipSource.java 18 import java.io.EOFException;
142 if (index == -1) throw new EOFException();
153 if (index == -1) throw new EOFException();
  /external/okhttp/okio/okio/src/test/java/okio/
SocketTimeoutTest.java 18 import java.io.EOFException;
133 if (read == -1) throw new EOFException();
  /frameworks/base/services/backup/java/com/android/server/backup/utils/
FullBackupUtils.java 32 import java.io.EOFException;
64 throw new EOFException();
  /libcore/luni/src/main/java/libcore/io/
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();
194 * @throws java.io.EOFException if the stream is exhausted before the next newline
204 throw new EOFException();
  /packages/apps/Dialer/java/com/android/dialer/callcomposer/camera/exif/
CountedDataInputStream.java 20 import java.io.EOFException;
74 throw new EOFException();
88 throw new EOFException();
  /packages/apps/Messaging/src/com/android/messaging/util/exif/
CountedDataInputStream.java 19 import java.io.EOFException;
73 throw new EOFException();
87 throw new EOFException();
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
ClusterChain.java 23 import java.io.EOFException;
202 if ((startCluster == 0 && len > 0)) throw new EOFException();

Completed in 716 milliseconds

1 2 3 4