HomeSort by relevance Sort by last modified time
    Searched refs:InterruptedIOException (Results 1 - 19 of 19) sorted by null

  /libcore/luni/src/main/java/java/io/
InterruptedIOException.java 25 public class InterruptedIOException extends IOException {
35 * Constructs a new {@code InterruptedIOException} with its stack trace
38 public InterruptedIOException() {
43 * Constructs a new {@code InterruptedIOException} with its stack trace and
49 public InterruptedIOException(String detailMessage) {
PipedInputStream.java 236 throw new InterruptedIOException();
277 * @throws InterruptedIOException
330 throw new InterruptedIOException();
383 * @throws InterruptedIOException
410 throw new InterruptedIOException();
PipedReader.java 221 * @throws InterruptedIOException
267 throw new InterruptedIOException();
340 * InterruptedIOException will be thrown.
371 throw new InterruptedIOException();
390 * InterruptedIOException will be thrown.
432 throw new InterruptedIOException();
  /libcore/luni/src/main/java/java/net/
SocketTimeoutException.java 20 import java.io.InterruptedIOException;
26 public class SocketTimeoutException extends InterruptedIOException {
  /external/apache-http/src/org/apache/http/conn/
ConnectTimeoutException.java 34 import java.io.InterruptedIOException;
44 public class ConnectTimeoutException extends InterruptedIOException {
  /libcore/luni/src/test/java/tests/api/java/io/
InterruptedIOExceptionTest.java 20 import java.io.InterruptedIOException;
26 @TestTargetClass(InterruptedIOException.class)
30 * @tests java.io.InterruptedIOException#InterruptedIOException()
35 method = "InterruptedIOException",
39 // Test for method java.io.InterruptedIOException()
41 throw new InterruptedIOException();
42 } catch (InterruptedIOException e) {
45 fail("Exception during InterruptedIOException test"
52 * @tests java.io.InterruptedIOException#InterruptedIOException(java.lang.String
    [all...]
  /external/apache-http/src/org/apache/http/impl/io/
SocketInputBuffer.java 35 import java.io.InterruptedIOException;
68 private static boolean isSocketTimeoutException(final InterruptedIOException e) {
104 } catch (InterruptedIOException e) {
  /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;
327 InterruptedIOException iox = new InterruptedIOException();
    [all...]
  /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.");
  /frameworks/base/tests/CoreTests/android/core/
DatagramTest.java 75 } catch (java.io.InterruptedIOException e) {
  /libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/ftp/
FtpURLConnection.java 25 import java.io.InterruptedIOException;
248 } catch (InterruptedIOException e) {
  /libcore/luni/src/main/java/org/apache/harmony/nio/internal/
DatagramChannelImpl.java 26 import java.io.InterruptedIOException;
214 } catch (InterruptedIOException e) {
450 } catch (InterruptedIOException e) {
451 // InterruptedIOException will be thrown when timeout.
  /libcore/luni/src/test/java/libcore/java/net/
OldDatagramSocketTest.java 21 import java.io.InterruptedIOException;
75 } catch (java.io.InterruptedIOException e) {
328 } catch (java.io.InterruptedIOException e) {
    [all...]
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/4/
android.jar 

Completed in 2142 milliseconds