OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EOFException
(Results
26 - 50
of
143
) sorted by null
1
2
3
4
5
6
/libcore/luni/src/test/java/libcore/java/lang/reflect/
ProxyTest.java
19
import java.io.
EOFException
;
126
instance.run(new
EOFException
());
128
} catch (
EOFException
expected) {
147
instance.run(new
EOFException
());
163
instance.run(new
EOFException
());
165
} catch (
EOFException
expected) {
184
instance.run(new
EOFException
());
186
} catch (
EOFException
expected) {
194
((ThrowsEOFExceptionReturnsString) instance).run(new
EOFException
());
196
} catch (
EOFException
expected)
[
all
...]
/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
();
/libcore/luni/src/main/java/java/util/zip/
InflaterInputStream.java
20
import java.io.
EOFException
;
169
throw new
EOFException
();
175
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/WallpaperPicker/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
();
/external/okhttp/okio/src/main/java/okio/
RealBufferedSource.java
18
import java.io.
EOFException
;
64
if (source.read(buffer, Segment.SIZE) == -1) throw new
EOFException
();
95
if (newline == -1L) throw new
EOFException
();
133
throw new
EOFException
();
InflaterSource.java
18
import java.io.
EOFException
;
77
if (sourceExhausted) throw new
EOFException
("source exhausted prematurely");
GzipSource.java
18
import java.io.
EOFException
;
137
if (index == -1) throw new
EOFException
();
148
if (index == -1) throw new
EOFException
();
/frameworks/base/services/core/java/com/android/server/
RandomBlock.java
23
import java.io.
EOFException
;
58
throw new
EOFException
();
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
FatFile.java
25
import java.io.
EOFException
;
119
throw new
EOFException
();
/libcore/luni/src/test/java/libcore/java/io/
OldDataInputStreamTest.java
24
import java.io.
EOFException
;
173
fail("Test 3:
EOFException
expected.");
174
} catch (
EOFException
e) {
203
fail("Test 3:
EOFException
expected.");
204
} catch (
EOFException
e) {
293
fail("Test 2:
EOFException
expected.");
294
} catch (
EOFException
e) {
316
fail("Test 2:
EOFException
expected.");
317
} catch (
EOFException
e) {
339
fail("Test 2:
EOFException
expected.")
[
all
...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1InputStream.java
4
import java.io.
EOFException
;
121
throw new
EOFException
("EOF encountered in middle of object");
311
throw new
EOFException
("EOF found inside tag value.");
326
throw new
EOFException
("EOF found when length expected");
351
throw new
EOFException
("EOF found reading length");
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/share/
JPDADebuggeeSynchronizer.java
30
import java.io.
EOFException
;
109
} catch (
EOFException
e) {
129
} catch (
EOFException
e) {
/external/guava/guava-tests/test/com/google/common/io/
LittleEndianDataInputStreamTest.java
27
import java.io.
EOFException
;
81
} catch (
EOFException
expected) {
91
} catch (
EOFException
expected) {}
/libcore/luni/src/main/java/java/io/
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
/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
();
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
();
/libcore/luni/src/test/java/libcore/java/util/zip/
GZIPInputStreamTest.java
21
import java.io.
EOFException
;
105
} catch (
EOFException
expected) {
117
} catch (
EOFException
expected) {
/development/samples/training/threadsample/src/com/example/android/threadsample/
PhotoDownloadRunnable.java
21
import java.io.
EOFException
;
315
throw new
EOFException
();
/external/okhttp/okio/src/test/java/okio/
InflaterSourceTest.java
18
import java.io.
EOFException
;
43
} catch (
EOFException
expected) {
/external/smack/src/org/xbill/DNS/
TCPClient.java
58
throw new
EOFException
();
85
throw new
EOFException
();
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
DexBackedOdexFile.java
41
import java.io.
EOFException
;
94
} catch (
EOFException
ex) {
/libcore/dalvik/src/main/java/dalvik/system/profiler/
HprofBinaryToAscii.java
22
import java.io.
EOFException
;
127
throw new
EOFException
("Could not find expected header");
Completed in 1534 milliseconds
1
2
3
4
5
6