/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/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/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/javapoet/src/test/java/com/squareup/javapoet/ |
D | MethodSpecTest.java | 274 ClassName ioException = ClassName.get(IOException.class); in duplicateExceptionsIgnored() local 277 .addException(ioException) in duplicateExceptionsIgnored() 280 .addException(ioException) in duplicateExceptionsIgnored() 282 assertThat(methodSpec.exceptions).isEqualTo(Arrays.asList(ioException, timeoutException)); in duplicateExceptionsIgnored() 283 assertThat(methodSpec.toBuilder().addException(ioException).build().exceptions) in duplicateExceptionsIgnored() 284 .isEqualTo(Arrays.asList(ioException, timeoutException)); in duplicateExceptionsIgnored()
|
/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/guava/guava/src/com/google/common/hash/ |
D | BloomFilter.java | 466 IOException ioException = new IOException( 471 ioException.initCause(e); 472 throw ioException;
|
/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/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/grpc-grpc-java/okhttp/third_party/okhttp/main/java/io/grpc/okhttp/internal/ |
D | Platform.java | 378 IOException ioException = new IOException("Exception in connect"); in connectSocket() 379 ioException.initCause(se); in connectSocket() 380 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()
|
/external/grpc-grpc-java/core/ |
D | grpc-core-1.14.0.jar | META-INF/
META-INF/MANIFEST.MF
io/
io/grpc/
io/ ... |
/external/guice/extensions/persist/lib/ |
D | xwork-2.0.4.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/opensymphony/
com/ ... |
/external/guice/extensions/struts2/lib/ |
D | xwork-core-2.2.1.jar | META-INF/
META-INF/MANIFEST.MF
xwork-validator-definition-1.0. ... |
/external/icu/tools/srcgen/currysrc/libs/ |
D | org.eclipse.jdt.core_3.14.0.v20180528-0519.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSE_.SF
META-INF/ECLIPSE_ ... |
/external/guice/lib/ |
D | guava-19.0.jar | META-INF/MANIFEST.MF
META-INF/
META-INF/maven/
META- ... |
/external/owasp/sanitizer/tools/findbugs/lib/ |
D | findbugs.jar | META-INF/
META-INF/MANIFEST.MF
default.xsl
edu/
edu/umd ... |
/external/dagger2/lib/ |
D | google-java-format-0.1-20151017.042846-2.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |
/external/conscrypt/benchmark-android/ |
D | vogar.jar | META-INF/
META-INF/MANIFEST.MF
vogar/
vogar/TestProperties.class
TestProperties ... |