/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) {
|
/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) {
|
PrintWriter.java | 408 catch (InterruptedIOException x) { 429 catch (InterruptedIOException x) { 459 catch (InterruptedIOException x) { 485 catch (InterruptedIOException x) { 909 } catch (InterruptedIOException x) { [all...] |
PrintStream.java | 387 * <code>IOException</code> other than <code>InterruptedIOException</code>, 390 * <code>InterruptedIOException</code>, then the <code>PrintStream</code> 399 * <code>InterruptedIOException</code>, or the 466 catch (InterruptedIOException x) { 497 catch (InterruptedIOException x) { 527 catch (InterruptedIOException x) { 548 catch (InterruptedIOException x) { 569 catch (InterruptedIOException x) { [all...] |
/frameworks/base/core/java/org/apache/http/conn/ |
ConnectTimeoutException.java | 34 import java.io.InterruptedIOException; 49 public class ConnectTimeoutException 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();
|
/libcore/ojluni/src/main/java/java/net/ |
SocketTimeoutException.java | 35 public class SocketTimeoutException extends java.io.InterruptedIOException {
|
/frameworks/base/services/net/java/android/net/netlink/ |
NetlinkSocket.java | 30 import java.io.InterruptedIOException; 85 throws ErrnoException, InterruptedIOException { 93 public ByteBuffer recvMessage(long timeoutMs) throws ErrnoException, InterruptedIOException { 110 throws ErrnoException, IllegalArgumentException, InterruptedIOException { 139 throws ErrnoException, InterruptedIOException { 150 throws ErrnoException, IllegalArgumentException, InterruptedIOException {
|
/external/okhttp/okio/okio/src/main/java/okio/ |
Timeout.java | 19 import java.io.InterruptedIOException; 139 * Throws an {@link InterruptedIOException} if the deadline has been reached or if the current 145 throw new InterruptedIOException("thread interrupted"); 149 throw new InterruptedIOException("deadline reached");
|
AsyncTimeout.java | 19 import java.io.InterruptedIOException; 266 * {@link java.io.InterruptedIOException}. If {@code cause} is non-null it is set as the cause of 270 InterruptedIOException e = new InterruptedIOException("timeout");
|
/external/jacoco/org.jacoco.core/src/org/jacoco/core/tools/ |
ExecDumpClient.java | 15 import java.io.InterruptedIOException; 151 private void sleep() throws InterruptedIOException { 155 throw new InterruptedIOException();
|
/libcore/ojluni/src/main/java/sun/misc/ |
Resource.java | 31 import java.io.InterruptedIOException; 102 } catch (InterruptedIOException iioe) { 125 } catch (InterruptedIOException iioe) { 144 } catch (InterruptedIOException iioe) {
|
/external/apache-http/src/org/apache/http/impl/client/ |
DefaultHttpRequestRetryHandler.java | 35 import java.io.InterruptedIOException; 101 if (exception instanceof InterruptedIOException) {
|
/external/apache-http/src/org/apache/http/impl/io/ |
SocketInputBuffer.java | 35 import java.io.InterruptedIOException; 87 } 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) {
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/ |
ThreadInterruptTest.java | 27 import java.io.InterruptedIOException; 96 } catch (InterruptedIOException expected) { 119 } catch (InterruptedIOException expected) {
|
/libcore/luni/src/main/java/libcore/io/ |
Os.java | 36 import java.io.InterruptedIOException; 61 public int fcntlFlock(FileDescriptor fd, int cmd, StructFlock arg) throws ErrnoException, InterruptedIOException; 117 public int pread(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException, InterruptedIOException; 118 public int pread(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) throws ErrnoException, InterruptedIOException; 119 public int pwrite(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException, InterruptedIOException; 120 public int pwrite(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) throws ErrnoException, InterruptedIOException; 121 public int read(FileDescriptor fd, ByteBuffer buffer) throws ErrnoException, InterruptedIOException; 122 public int read(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount) throws ErrnoException, InterruptedIOException; 125 public int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException; 169 public int write(FileDescriptor fd, ByteBuffer buffer) throws ErrnoException, InterruptedIOException; [all...] |
Posix.java | 36 import java.io.InterruptedIOException; 64 public native int fcntlFlock(FileDescriptor fd, int cmd, StructFlock arg) throws ErrnoException, InterruptedIOException; 118 public int pread(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException, InterruptedIOException { 131 public int pread(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) throws ErrnoException, InterruptedIOException { 135 private native int preadBytes(FileDescriptor fd, Object buffer, int bufferOffset, int byteCount, long offset) throws ErrnoException, InterruptedIOException; 136 public int pwrite(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException, InterruptedIOException { 149 public int pwrite(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) throws ErrnoException, InterruptedIOException { 153 private native int pwriteBytes(FileDescriptor fd, Object buffer, int bufferOffset, int byteCount, long offset) throws ErrnoException, InterruptedIOException; 154 public int read(FileDescriptor fd, ByteBuffer buffer) throws ErrnoException, InterruptedIOException { 167 public int read(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount) throws ErrnoException, InterruptedIOException { [all...] |
BlockGuardOs.java | 28 import java.io.InterruptedIOException; 204 @Override public int pread(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException, InterruptedIOException { 209 @Override public int pread(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) throws ErrnoException, InterruptedIOException { 214 @Override public int pwrite(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException, InterruptedIOException { 219 @Override public int pwrite(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) throws ErrnoException, InterruptedIOException { 224 @Override public int read(FileDescriptor fd, ByteBuffer buffer) throws ErrnoException, InterruptedIOException { 229 @Override public int read(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount) throws ErrnoException, InterruptedIOException { 244 @Override public int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException { 312 @Override public int write(FileDescriptor fd, ByteBuffer buffer) throws ErrnoException, InterruptedIOException { 317 @Override public int write(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount) throws ErrnoException, InterruptedIOException { [all...] |
IoUtils.java | 25 import java.io.InterruptedIOException; 171 public static void throwInterruptedIoException() throws InterruptedIOException { 176 // TODO: set InterruptedIOException.bytesTransferred 177 throw new InterruptedIOException();
|
/external/jetty/src/java/org/eclipse/jetty/client/ |
SocketConnector.java | 22 import java.io.InterruptedIOException; 87 if (e instanceof InterruptedIOException)
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/ |
ConnectionSpecSelector.java | 21 import java.io.InterruptedIOException; 106 if (e instanceof InterruptedIOException) {
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
DownloadUtils.java | 27 import java.io.InterruptedIOException; 58 if (jc.isCancelled()) throw new InterruptedIOException();
|
/external/jetty/src/java/org/eclipse/jetty/io/ |
UncheckedPrintWriter.java | 23 import java.io.InterruptedIOException; 213 catch (InterruptedIOException x) 245 catch (InterruptedIOException x) 291 catch (InterruptedIOException x) 327 catch (InterruptedIOException x)
|
/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();
|