OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:InterruptedIOException
(Results
1 - 25
of
50
) sorted by null
1
2
/libcore/luni/src/main/java/java/io/
InterruptedIOException.java
25
public class
InterruptedIOException
extends IOException {
37
public
InterruptedIOException
() {
43
public
InterruptedIOException
(String detailMessage) {
51
public
InterruptedIOException
(String detailMessage, Throwable cause) {
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
InterruptedIOExceptionTest.java
20
import java.io.
InterruptedIOException
;
27
* @tests java.io.
InterruptedIOException
#
InterruptedIOException
()
31
throw new
InterruptedIOException
();
32
} catch (
InterruptedIOException
e) {
38
* @tests java.io.
InterruptedIOException
#
InterruptedIOException
(java.lang.String)
42
throw new
InterruptedIOException
("Some error message");
43
} catch (
InterruptedIOException
e) {
/external/apache-http/src/org/apache/http/conn/
ConnectTimeoutException.java
34
import java.io.
InterruptedIOException
;
44
public class ConnectTimeoutException extends
InterruptedIOException
{
/libcore/luni/src/main/java/java/net/
SocketTimeoutException.java
20
import java.io.
InterruptedIOException
;
26
public class SocketTimeoutException extends
InterruptedIOException
{
/packages/apps/Gallery2/src/com/android/gallery3d/util/
InterruptableOutputStream.java
22
import java.io.
InterruptedIOException
;
38
if (mIsInterrupted) throw new
InterruptedIOException
();
46
if (mIsInterrupted) throw new
InterruptedIOException
();
60
if (mIsInterrupted) throw new
InterruptedIOException
();
/external/apache-http/src/org/apache/http/impl/client/
DefaultHttpRequestRetryHandler.java
35
import java.io.
InterruptedIOException
;
96
if (exception instanceof
InterruptedIOException
) {
DefaultRequestDirector.java
35
import java.io.
InterruptedIOException
;
328
InterruptedIOException
iox = new
InterruptedIOException
();
[
all
...]
/external/apache-http/src/org/apache/http/impl/io/
SocketInputBuffer.java
35
import java.io.
InterruptedIOException
;
82
} catch (
InterruptedIOException
e) {
/libcore/luni/src/test/java/libcore/java/io/
InterruptedStreamTest.java
21
import java.io.
InterruptedIOException
;
41
* an
InterruptedIOException
.
125
} catch (
InterruptedIOException
expected) {
136
} catch (
InterruptedIOException
expected) {
160
} catch (
InterruptedIOException
expected) {
173
} catch (
InterruptedIOException
expected) {
/packages/apps/Gallery2/src/com/android/gallery3d/data/
DownloadUtils.java
27
import java.io.
InterruptedIOException
;
58
if (jc.isCancelled()) throw new
InterruptedIOException
();
/libcore/luni/src/main/java/libcore/io/
IoUtils.java
23
import java.io.
InterruptedIOException
;
171
public static void throwInterruptedIoException() throws
InterruptedIOException
{
176
// TODO: set
InterruptedIOException
.bytesTransferred
177
throw new
InterruptedIOException
();
/external/apache-http/src/org/apache/http/impl/conn/
AbstractClientConnAdapter.java
35
import java.io.
InterruptedIOException
;
146
* @throws
InterruptedIOException
if the connection has been aborted
148
protected final void assertNotAborted() throws
InterruptedIOException
{
150
throw new
InterruptedIOException
("Connection has been shut down.");
/external/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
SpdyStream.java
22
import java.io.
InterruptedIOException
;
169
InterruptedIOException
rethrow = new
InterruptedIOException
();
510
throw new
InterruptedIOException
();
719
throw new
InterruptedIOException
();
/external/smack/src/org/xbill/DNS/
ExtendedResolver.java
186
if (e instanceof
InterruptedIOException
) {
198
thrown instanceof
InterruptedIOException
)
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/common/
Utils.java
30
import java.io.
InterruptedIOException
;
273
if (e instanceof
InterruptedIOException
/packages/apps/Camera2/src/com/android/camera/crop/
Utils.java
30
import java.io.
InterruptedIOException
;
273
if (e instanceof
InterruptedIOException
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
Utils.java
30
import java.io.
InterruptedIOException
;
273
if (e instanceof
InterruptedIOException
/packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/common/
Utils.java
30
import java.io.
InterruptedIOException
;
273
if (e instanceof
InterruptedIOException
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
ServerSocketTest.java
22
import java.io.
InterruptedIOException
;
130
} catch (
InterruptedIOException
e) {
196
} catch (
InterruptedIOException
e) {
231
} catch (
InterruptedIOException
e) {
345
// Timeout should trigger and throw
InterruptedIOException
350
} catch (
InterruptedIOException
e) {
[
all
...]
DatagramSocketTest.java
21
import java.io.
InterruptedIOException
;
72
} catch (java.io.
InterruptedIOException
e) {
190
} catch (java.io.
InterruptedIOException
e) {
565
} catch (
InterruptedIOException
e) {
604
} catch (
InterruptedIOException
e) {
639
} catch (
InterruptedIOException
e) {
745
} catch (java.io.
InterruptedIOException
e) {
[
all
...]
/libcore/luni/src/main/java/java/nio/
DatagramChannelImpl.java
22
import java.io.
InterruptedIOException
;
181
} catch (
InterruptedIOException
e) {
335
} catch (
InterruptedIOException
e) {
336
//
InterruptedIOException
will be thrown when timeout.
/libcore/luni/src/test/java/libcore/java/net/
OldAndroidDatagramTest.java
75
} catch (java.io.
InterruptedIOException
e) {
OldDatagramSocketTest.java
21
import java.io.
InterruptedIOException
;
75
} catch (java.io.
InterruptedIOException
e) {
326
} catch (java.io.
InterruptedIOException
e) {
[
all
...]
/external/apache-harmony/support/src/test/java/tests/support/
Support_HttpServer.java
23
import java.io.
InterruptedIOException
;
119
} catch (
InterruptedIOException
e) {
/libcore/luni/src/main/java/libcore/net/url/
FtpURLConnection.java
25
import java.io.
InterruptedIOException
;
248
} catch (
InterruptedIOException
e) {
Completed in 1709 milliseconds
1
2