HomeSort by relevance Sort by last modified time
    Searched refs:InterruptedIOException (Results 1 - 25 of 48) 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) {
  /libcore/luni/src/main/java/libcore/io/
IoUtils.java 22 import java.io.InterruptedIOException;
166 public static void throwInterruptedIoException() throws InterruptedIOException {
171 // TODO: set InterruptedIOException.bytesTransferred
172 throw new InterruptedIOException();
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
DownloadUtils.java 27 import java.io.InterruptedIOException;
58 if (jc.isCancelled()) 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();
717 throw new InterruptedIOException();
  /libcore/luni/src/test/java/libcore/java/net/
OldAndroidDatagramTest.java 73 } 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/smack/src/org/xbill/DNS/
ExtendedResolver.java 186 if (e instanceof InterruptedIOException) {
198 thrown instanceof InterruptedIOException)
Lookup.java 471 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
  /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;
188 } catch (InterruptedIOException e) {
341 } catch (InterruptedIOException e) {
342 // InterruptedIOException will be thrown when timeout.
  /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) {
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/impl/client/
DefaultRequestDirector.java 64 import java.io.InterruptedIOException;
371 InterruptedIOException iox = new InterruptedIOException();
    [all...]
  /external/okhttp/src/test/java/com/squareup/okhttp/internal/spdy/
SpdyConnectionTest.java 23 import java.io.InterruptedIOException;
    [all...]

Completed in 1153 milliseconds

1 2