/external/volley/core/src/main/java/com/android/volley/toolbox/ |
D | AsyncHttpStack.java | 49 void onError(IOException ioException); in onError() argument 134 public void onError(IOException ioException) { in executeRequest() 138 ioException, in executeRequest() 154 } else if (response.ioException != null) { in executeRequest() 155 throw response.ioException; in executeRequest() 163 IOException ioException; field in AsyncHttpStack.Response 168 @Nullable IOException ioException, in Response() argument 171 this.ioException = ioException; in Response()
|
D | BasicAsyncNetwork.java | 195 public void onError(IOException ioException) { in performRequest() 199 ioException, in performRequest()
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/ |
D | Http2.java | 107 throw ioException("Expected a connection header but was %s", connectionPreface.utf8()); in readConnectionPreface() 132 throw ioException("FRAME_SIZE_ERROR: %s", length); in nextFrame() 185 if (streamId == 0) throw ioException("PROTOCOL_ERROR: TYPE_HEADERS streamId == 0"); in readHeaders() 222 throw ioException("PROTOCOL_ERROR: FLAG_COMPRESSED without SETTINGS_COMPRESS_DATA"); in readData() 234 if (length != 5) throw ioException("TYPE_PRIORITY length: %d != 5", length); in readPriority() 235 if (streamId == 0) throw ioException("TYPE_PRIORITY streamId == 0"); in readPriority() 249 if (length != 4) throw ioException("TYPE_RST_STREAM length: %d != 4", length); in readRstStream() 250 if (streamId == 0) throw ioException("TYPE_RST_STREAM streamId == 0"); in readRstStream() 254 throw ioException("TYPE_RST_STREAM unexpected error code: %d", errorCodeInt); in readRstStream() 261 if (streamId != 0) throw ioException("TYPE_SETTINGS streamId != 0"); in readSettings() [all …]
|
D | Spdy3.java | 215 if (length != 8) throw ioException("TYPE_RST_STREAM length: %d != 8", length); in readRstStream() 220 throw ioException("TYPE_RST_STREAM unexpected error code: %d", errorCodeInt); in readRstStream() 233 if (length != 8) throw ioException("TYPE_WINDOW_UPDATE length: %d != 8", length); in readWindowUpdate() 238 if (increment == 0) throw ioException("windowSizeIncrement was 0", increment); in readWindowUpdate() 243 if (length != 4) throw ioException("TYPE_PING length: %d != 4", length); in readPing() 250 if (length != 8) throw ioException("TYPE_GOAWAY length: %d != 8", length); in readGoAway() 255 throw ioException("TYPE_GOAWAY unexpected error code: %d", errorCodeInt); in readGoAway() 263 throw ioException("TYPE_SETTINGS length: %d != 4 + 8 * %d", length, numberOfEntries); in readSettings() 277 private static IOException ioException(String message, Object... args) throws IOException { in ioException() method in Spdy3.Reader
|
/external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/internal/framed/ |
D | Http2.java | 109 throw ioException("Expected a connection header but was %s", connectionPreface.utf8()); in readConnectionPreface() 134 throw ioException("FRAME_SIZE_ERROR: %s", length); in nextFrame() 187 if (streamId == 0) throw ioException("PROTOCOL_ERROR: TYPE_HEADERS streamId == 0"); in readHeaders() 224 throw ioException("PROTOCOL_ERROR: FLAG_COMPRESSED without SETTINGS_COMPRESS_DATA"); in readData() 236 if (length != 5) throw ioException("TYPE_PRIORITY length: %d != 5", length); in readPriority() 237 if (streamId == 0) throw ioException("TYPE_PRIORITY streamId == 0"); in readPriority() 251 if (length != 4) throw ioException("TYPE_RST_STREAM length: %d != 4", length); in readRstStream() 252 if (streamId == 0) throw ioException("TYPE_RST_STREAM streamId == 0"); in readRstStream() 256 throw ioException("TYPE_RST_STREAM unexpected error code: %d", errorCodeInt); in readRstStream() 263 if (streamId != 0) throw ioException("TYPE_SETTINGS streamId != 0"); in readSettings() [all …]
|
D | Spdy3.java | 217 if (length != 8) throw ioException("TYPE_RST_STREAM length: %d != 8", length); in readRstStream() 222 throw ioException("TYPE_RST_STREAM unexpected error code: %d", errorCodeInt); in readRstStream() 235 if (length != 8) throw ioException("TYPE_WINDOW_UPDATE length: %d != 8", length); in readWindowUpdate() 240 if (increment == 0) throw ioException("windowSizeIncrement was 0", increment); in readWindowUpdate() 245 if (length != 4) throw ioException("TYPE_PING length: %d != 4", length); in readPing() 252 if (length != 8) throw ioException("TYPE_GOAWAY length: %d != 8", length); in readGoAway() 257 throw ioException("TYPE_GOAWAY unexpected error code: %d", errorCodeInt); in readGoAway() 265 throw ioException("TYPE_SETTINGS length: %d != 4 + 8 * %d", length, numberOfEntries); in readSettings() 279 private static IOException ioException(String message, Object... args) throws IOException { in ioException() method in Spdy3.Reader
|
/external/mobile-data-download/java/com/google/android/libraries/mobiledatadownload/file/common/testing/ |
D | FakeFileBackend.java | 121 IOException ioException; in throwIf() local 123 ioException = failureMap.get(type); in throwIf() 125 if (ioException != null) { in throwIf() 126 throw ioException; in throwIf() 172 IOException ioException; in openForWrite() local 174 ioException = failureMap.get(OperationType.WRITE_STREAM); in openForWrite() 176 if (ioException != null) { in openForWrite() 177 return new FailingOutputStream(out, ioException); in openForWrite() 186 IOException ioException; in openForAppend() local 188 ioException = failureMap.get(OperationType.WRITE_STREAM); in openForAppend() [all …]
|
/external/grpc-grpc-java/okhttp/third_party/okhttp/main/java/io/grpc/okhttp/internal/framed/ |
D | Http2.java | 112 throw ioException("Expected a connection header but was %s", connectionPreface.utf8()); in readConnectionPreface() 137 throw ioException("FRAME_SIZE_ERROR: %s", length); in nextFrame() 190 if (streamId == 0) throw ioException("PROTOCOL_ERROR: TYPE_HEADERS streamId == 0"); in readHeaders() 227 throw ioException("PROTOCOL_ERROR: FLAG_COMPRESSED without SETTINGS_COMPRESS_DATA"); in readData() 239 if (length != 5) throw ioException("TYPE_PRIORITY length: %d != 5", length); in readPriority() 240 if (streamId == 0) throw ioException("TYPE_PRIORITY streamId == 0"); in readPriority() 254 if (length != 4) throw ioException("TYPE_RST_STREAM length: %d != 4", length); in readRstStream() 255 if (streamId == 0) throw ioException("TYPE_RST_STREAM streamId == 0"); in readRstStream() 259 throw ioException("TYPE_RST_STREAM unexpected error code: %d", errorCodeInt); in readRstStream() 266 if (streamId != 0) throw ioException("TYPE_SETTINGS streamId != 0"); in readSettings() [all …]
|
/external/cbor-java/src/main/java/co/nstant/in/cbor/encoder/ |
D | AbstractEncoder.java | 31 } catch (IOException ioException) { in encodeTypeChunked() 32 throw new CborException(ioException); in encodeTypeChunked() 118 } catch (IOException ioException) { in write() 119 throw new CborException(ioException); in write() 126 } catch (IOException ioException) { in write() 127 throw new CborException(ioException); in write()
|
/external/robolectric/shadows/httpclient/src/main/java/org/robolectric/shadows/httpclient/ |
D | FakeHttpLayer.java | 283 private IOException ioException; field in FakeHttpLayer.RequestMatcherResponseRule 292 public RequestMatcherResponseRule(RequestMatcher requestMatcher, IOException ioException) { in RequestMatcherResponseRule() argument 294 this.ioException = ioException; in RequestMatcherResponseRule() 315 if (ioException != null) throw ioException; in getResponse()
|
/external/robolectric-shadows/shadows/httpclient/src/main/java/org/robolectric/shadows/httpclient/ |
D | FakeHttpLayer.java | 278 private IOException ioException; field in FakeHttpLayer.RequestMatcherResponseRule 287 public RequestMatcherResponseRule(RequestMatcher requestMatcher, IOException ioException) { in RequestMatcherResponseRule() argument 289 this.ioException = ioException; in RequestMatcherResponseRule() 310 if (ioException != null) throw ioException; in getResponse()
|
/external/javapoet/src/test/java/com/squareup/javapoet/ |
D | MethodSpecTest.java | 346 ClassName ioException = ClassName.get(IOException.class); in duplicateExceptionsIgnored() local 349 .addException(ioException) in duplicateExceptionsIgnored() 352 .addException(ioException) in duplicateExceptionsIgnored() 354 assertThat(methodSpec.exceptions).isEqualTo(Arrays.asList(ioException, timeoutException)); in duplicateExceptionsIgnored() 355 assertThat(methodSpec.toBuilder().addException(ioException).build().exceptions) in duplicateExceptionsIgnored() 356 .isEqualTo(Arrays.asList(ioException, timeoutException)); in duplicateExceptionsIgnored()
|
/external/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/ant/ |
D | GenerateCodeTask.java | 86 } catch (IOException ioException) { in execute() 87 throw new BuildException("IOException: " + ioException.toString()); in execute()
|
/external/cbor-java/src/main/java/co/nstant/in/cbor/decoder/ |
D | AbstractDecoder.java | 32 } catch (IOException ioException) { in nextSymbol() 33 throw new CborException(ioException); in nextSymbol()
|
/external/mockito/src/test/java/org/mockitousage/stubbing/ |
D | StubbingWithThrowablesTest.java | 139 IOException ioException = new IOException(); in shouldAllowSettingCheckedException() local 141 when(reader.read()).thenThrow(ioException); in shouldAllowSettingCheckedException() 143 exception.expect(sameInstance(ioException)); in shouldAllowSettingCheckedException()
|
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/arj/ |
D | ArjArchiveInputStream.java | 70 } catch (final IOException ioException) { in ArjArchiveInputStream() 71 throw new ArchiveException(ioException.getMessage(), ioException); in ArjArchiveInputStream()
|
/external/cbor-java/src/main/java/co/nstant/in/cbor/ |
D | CborDecoder.java | 125 } catch (IOException ioException) { in decodeNext() 126 throw new CborException(ioException); in decodeNext()
|
/external/robolectric/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowFileObserver.java | 49 } catch (IOException ioException) { in ShadowFileObserver() 50 throw new RuntimeException(ioException); in ShadowFileObserver()
|
/external/jackson-core/src/test/java/com/fasterxml/jackson/core/base64/ |
D | Base64BinaryParsingTest.java | 245 …IOException ioException = new IOException("Failed (variant "+variant+", data length "+len+"): "+e.… in _testBase64Text() 246 ioException.initCause(e); in _testBase64Text() 247 throw ioException; in _testBase64Text()
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/ |
D | Platform.java | 237 IOException ioException = new IOException("Exception in connect"); in connectSocket() 238 ioException.initCause(e); in connectSocket() 239 throw ioException; in connectSocket()
|
/external/mobile-data-download/java/com/google/android/libraries/mobiledatadownload/internal/downloader/ |
D | DeltaFileDownloaderCallbackImpl.java | 137 ioException -> { in onDownloadComplete() 141 exception.addSuppressed(ioException); in onDownloadComplete()
|
D | DownloaderCallbackImpl.java | 139 ioException -> { in onDownloadComplete() 143 exception.addSuppressed(ioException); in onDownloadComplete()
|
/external/grpc-grpc-java/okhttp/third_party/okhttp/main/java/io/grpc/okhttp/internal/ |
D | Platform.java | 380 IOException ioException = new IOException("Exception in connect"); in connectSocket() 381 ioException.initCause(se); in connectSocket() 382 throw ioException; in connectSocket()
|
/external/grpc-grpc-java/core/src/main/java/io/grpc/internal/ |
D | GrpcUtil.java | 731 } catch (IOException ioException) { 733 log.log(Level.WARNING, "exception caught in closeQuietly", ioException);
|
D | ServerImpl.java | 608 } catch (IOException ioException) { in messagesAvailable() 610 log.log(Level.WARNING, "Exception closing stream", ioException); in messagesAvailable()
|