/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) {
|
/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) {
|
/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/okhttp/okio/src/main/java/okio/ |
Deadline.java | 19 import java.io.InterruptedIOException; 56 if (Thread.interrupted()) throw new InterruptedIOException();
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/ |
ThreadInterruptTest.java | 22 import java.io.InterruptedIOException; 55 } catch (InterruptedIOException expected) { 78 } catch (InterruptedIOException expected) {
|
/external/apache-http/src/org/apache/http/impl/client/ |
DefaultHttpRequestRetryHandler.java | 35 import java.io.InterruptedIOException; 96 if (exception instanceof InterruptedIOException) {
|
/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/ |
BlockGuardOs.java | 28 import java.io.InterruptedIOException; 203 @Override public int pread(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException, InterruptedIOException { 208 @Override public int pread(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) throws ErrnoException, InterruptedIOException { 213 @Override public int pwrite(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException, InterruptedIOException { 218 @Override public int pwrite(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) throws ErrnoException, InterruptedIOException { 223 @Override public int read(FileDescriptor fd, ByteBuffer buffer) throws ErrnoException, InterruptedIOException { 228 @Override public int read(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount) throws ErrnoException, InterruptedIOException { 238 @Override public int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException { 306 @Override public int write(FileDescriptor fd, ByteBuffer buffer) throws ErrnoException, InterruptedIOException { 311 @Override public int write(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount) throws ErrnoException, InterruptedIOException { [all...] |
Os.java | 36 import java.io.InterruptedIOException; 113 public int pread(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException, InterruptedIOException; 114 public int pread(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) throws ErrnoException, InterruptedIOException; 115 public int pwrite(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException, InterruptedIOException; 116 public int pwrite(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) throws ErrnoException, InterruptedIOException; 117 public int read(FileDescriptor fd, ByteBuffer buffer) throws ErrnoException, InterruptedIOException; 118 public int read(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount) throws ErrnoException, InterruptedIOException; 120 public int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException; 157 public int write(FileDescriptor fd, ByteBuffer buffer) throws ErrnoException, InterruptedIOException; 158 public int write(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount) throws ErrnoException, InterruptedIOException; [all...] |
Posix.java | 36 import java.io.InterruptedIOException; 114 public int pread(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException, InterruptedIOException { 121 public int pread(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) throws ErrnoException, InterruptedIOException { 125 private native int preadBytes(FileDescriptor fd, Object buffer, int bufferOffset, int byteCount, long offset) throws ErrnoException, InterruptedIOException; 126 public int pwrite(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException, InterruptedIOException { 133 public int pwrite(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) throws ErrnoException, InterruptedIOException { 137 private native int pwriteBytes(FileDescriptor fd, Object buffer, int bufferOffset, int byteCount, long offset) throws ErrnoException, InterruptedIOException; 138 public int read(FileDescriptor fd, ByteBuffer buffer) throws ErrnoException, InterruptedIOException { 145 public int read(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount) throws ErrnoException, InterruptedIOException { 149 private native int readBytes(FileDescriptor fd, Object buffer, int offset, int byteCount) throws ErrnoException, InterruptedIOException; [all...] |
IoUtils.java | 25 import java.io.InterruptedIOException; 173 public static void throwInterruptedIoException() throws InterruptedIOException { 178 // TODO: set InterruptedIOException.bytesTransferred 179 throw new InterruptedIOException();
|
ForwardingOs.java | 36 import java.io.InterruptedIOException; 120 public int pread(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException, InterruptedIOException { return os.pread(fd, buffer, offset); } 121 public int pread(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) throws ErrnoException, InterruptedIOException { return os.pread(fd, bytes, byteOffset, byteCount, offset); } 122 public int pwrite(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException, InterruptedIOException { return os.pwrite(fd, buffer, offset); } 123 public int pwrite(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) throws ErrnoException, InterruptedIOException { return os.pwrite(fd, bytes, byteOffset, byteCount, offset); } 124 public int read(FileDescriptor fd, ByteBuffer buffer) throws ErrnoException, InterruptedIOException { return os.read(fd, buffer); } 125 public int read(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount) throws ErrnoException, InterruptedIOException { return os.read(fd, bytes, byteOffset, byteCount); } 127 public int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException { return os.readv(fd, buffers, offsets, byteCounts); } 164 public int write(FileDescriptor fd, ByteBuffer buffer) throws ErrnoException, InterruptedIOException { return os.write(fd, buffer); } 165 public int write(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount) throws ErrnoException, InterruptedIOException { return os.write(fd, bytes, byteOffset, byteCount); [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
DownloadUtils.java | 27 import java.io.InterruptedIOException; 58 if (jc.isCancelled()) throw new InterruptedIOException();
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/ |
SpdyStream.java | 21 import java.io.InterruptedIOException; 160 InterruptedIOException rethrow = new InterruptedIOException(); 421 throw new InterruptedIOException(); 531 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.");
|
/libcore/luni/src/main/java/android/system/ |
Os.java | 36 import java.io.InterruptedIOException; 339 public static int pread(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException, InterruptedIOException { return Libcore.os.pread(fd, buffer, offset); } 344 public static int pread(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) throws ErrnoException, InterruptedIOException { return Libcore.os.pread(fd, bytes, byteOffset, byteCount, offset); } 349 public static int pwrite(FileDescriptor fd, ByteBuffer buffer, long offset) throws ErrnoException, InterruptedIOException { return Libcore.os.pwrite(fd, buffer, offset); } 354 public static int pwrite(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount, long offset) throws ErrnoException, InterruptedIOException { return Libcore.os.pwrite(fd, bytes, byteOffset, byteCount, offset); } 359 public static int read(FileDescriptor fd, ByteBuffer buffer) throws ErrnoException, InterruptedIOException { return Libcore.os.read(fd, buffer); } 364 public static int read(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount) throws ErrnoException, InterruptedIOException { return Libcore.os.read(fd, bytes, byteOffset, byteCount); } 374 public static int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException, InterruptedIOException { return Libcore.os.readv(fd, buffers, offsets, byteCounts); } 528 public static int write(FileDescriptor fd, ByteBuffer buffer) throws ErrnoException, InterruptedIOException { return Libcore.os.write(fd, buffer); } 533 public static int write(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount) throws ErrnoException, InterruptedIOException { return Libcore.os.write(fd, bytes, byteOffset, byteCount); [all...] |
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/ |
SocketTransportWrapper.java | 34 import java.io.InterruptedIOException; 171 throw new InterruptedIOException("Interruption in attaching to " + address);
|
/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
|
/frameworks/base/services/core/java/com/android/server/am/ |
NativeCrashListener.java | 31 import java.io.InterruptedIOException; 181 throws ErrnoException, 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
|