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

1 2

  /libcore/ojluni/src/main/java/java/io/
InterruptedIOException.java 31 * <code>InterruptedIOException</code> is thrown to indicate that an
44 class InterruptedIOException extends IOException {
48 * Constructs an <code>InterruptedIOException</code> with
51 public InterruptedIOException() {
56 * Constructs an <code>InterruptedIOException</code> with the
64 public InterruptedIOException(String s) {
78 public InterruptedIOException(Throwable cause) {
88 public InterruptedIOException(String detailMessage, Throwable cause) {
  /external/conscrypt/libcore-stub/src/main/java/libcore/io/
IoUtils.java 20 import java.io.InterruptedIOException;
52 public static void throwInterruptedIoException() throws InterruptedIOException {
57 // TODO: set InterruptedIOException.bytesTransferred
58 throw new InterruptedIOException();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
InterruptedIOExceptionTest.java 20 import java.io.InterruptedIOException;
27 * java.io.InterruptedIOException#InterruptedIOException()
31 throw new InterruptedIOException();
32 } catch (InterruptedIOException e) {
38 * java.io.InterruptedIOException#InterruptedIOException(java.lang.String)
42 throw new InterruptedIOException("Some error message");
43 } catch (InterruptedIOException e) {
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
DownloadUtils.java 27 import java.io.InterruptedIOException;
58 if (jc.isCancelled()) throw new 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/jacoco/org.jacoco.agent.rt.test/src/org/jacoco/agent/rt/internal/output/
MockServerSocket.java 15 import java.io.InterruptedIOException;
100 throw new InterruptedIOException();
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/tools/
ExecDumpClient.java 15 import java.io.InterruptedIOException;
154 private void sleep() throws InterruptedIOException {
158 throw new InterruptedIOException();
  /libcore/luni/src/main/java/libcore/io/
IoUtils.java 25 import java.io.InterruptedIOException;
171 public static void throwInterruptedIoException() throws InterruptedIOException {
176 // TODO: set InterruptedIOException.bytesTransferred
177 throw new InterruptedIOException();
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
FramedStream.java 21 import java.io.InterruptedIOException;
583 * Like {@link #wait}, but throws an {@code InterruptedIOException} when
586 private void waitForIo() throws InterruptedIOException {
590 throw new InterruptedIOException();
FramedConnection.java 23 import java.io.InterruptedIOException;
326 throw new InterruptedIOException();
    [all...]
  /prebuilts/misc/common/robolectric/android-all/
android-all-4.1.2_r1-robolectric-r1.jar 
android-all-4.2.2_r1.2-robolectric-r1.jar 
android-all-4.3_r2-robolectric-r1.jar 
android-all-4.4_r1-robolectric-r2.jar 
android-all-5.0.2_r3-robolectric-r0.jar 
android-all-5.1.1_r9-robolectric-r2.jar 
android-all-6.0.1_r3-robolectric-0.jar 
android-all-6.0.1_r3-robolectric-r1.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/20/
android.jar 
  /prebuilts/sdk/22/
android.jar 
  /prebuilts/sdk/23/
android.jar 

Completed in 195 milliseconds

1 2