/external/aws-sdk-java-v2/http-clients/netty-nio-client/src/test/java/software/amazon/awssdk/http/nio/netty/internal/http2/ |
D | Http2StreamExceptionHandlerTest.java | 86 handler.exceptionCaught(context, ReadTimeoutException.INSTANCE); in timeoutException_shouldFireExceptionAndPropagateException() 88 …assertThat(verifyExceptionHandler.exceptionCaught).isExactlyInstanceOf(Http2ConnectionTerminatingE… in timeoutException_shouldFireExceptionAndPropagateException() 96 handler.exceptionCaught(context, ioException); in ioException_shouldFireExceptionAndPropagateException() 98 …assertThat(verifyExceptionHandler.exceptionCaught).isExactlyInstanceOf(Http2ConnectionTerminatingE… in ioException_shouldFireExceptionAndPropagateException() 107 handler.exceptionCaught(context, otherException); in otherException_shouldJustPropagateException() 112 assertThat(verifyExceptionHandler.exceptionCaught).isNull(); in otherException_shouldJustPropagateException() 116 private Throwable exceptionCaught; field in Http2StreamExceptionHandlerTest.TestVerifyExceptionHandler 118 public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) { in exceptionCaught() method in Http2StreamExceptionHandlerTest.TestVerifyExceptionHandler 119 exceptionCaught = cause; in exceptionCaught()
|
D | MultiplexedChannelRecordTest.java | 221 assertThat(verifyExceptionHandler.exceptionCaught).hasStackTraceContaining("foobar") in closeChildChannels_shouldDeliverException() 239 private Throwable exceptionCaught; field in MultiplexedChannelRecordTest.VerifyExceptionHandler 241 public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) { in exceptionCaught() method in MultiplexedChannelRecordTest.VerifyExceptionHandler 242 exceptionCaught = cause; in exceptionCaught()
|
D | Http2PingHandlerTest.java | 230 public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception { in exceptionCaught() method in Http2PingHandlerTest.PipelineExceptionCatcher 232 super.exceptionCaught(ctx, cause); in exceptionCaught()
|
D | Http2SettingsFrameHandlerTest.java | 97 handler.exceptionCaught(context, cause); in exceptionCaught_shouldHandleErrorCloseChannel()
|
/external/aws-sdk-java-v2/services-custom/s3-transfer-manager/src/it/java/software/amazon/awssdk/transfer/s3/ |
D | CaptureTransferListener.java | 41 return exceptionCaught; in getExceptionCaught() 49 private Throwable exceptionCaught; field in CaptureTransferListener 72 exceptionCaught = context.exception(); in transferFailed() 73 completionFuture.completeExceptionally(exceptionCaught); in transferFailed()
|
/external/aws-sdk-java-v2/http-clients/netty-nio-client/src/test/java/software/amazon/awssdk/http/nio/netty/internal/ |
D | UnusedChannelExceptionHandlerTest.java | 59 UnusedChannelExceptionHandler.getInstance().exceptionCaught(ctx, exception); in inUseDoesNothing() 85 UnusedChannelExceptionHandler.getInstance().exceptionCaught(ctx, exception); in notInUseCloses() 97 UnusedChannelExceptionHandler.getInstance().exceptionCaught(ctx, exception); in notInUseFutureCompletes()
|
D | FutureCancelHandlerTest.java | 89 handler.exceptionCaught(ctx, cancelledException); in surfacesCancelExceptionAsIOException() 100 handler.exceptionCaught(ctx, err); in forwardsExceptionIfNotCancelledException() 111 handler.exceptionCaught(ctx, cancelledException); in cancelledException_executionIdNull_shouldIgnoreExceptionAndCloseChannel()
|
/external/grpc-grpc-java/alts/src/test/java/io/grpc/alts/internal/ |
D | GoogleDefaultProtocolNegotiatorTest.java | 118 ChannelHandler exceptionCaught = new ChannelInboundHandlerAdapter() { in subtest_altsHandler() local 120 public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception { in subtest_altsHandler() 122 super.exceptionCaught(ctx, cause); in subtest_altsHandler() 126 EmbeddedChannel chan = new EmbeddedChannel(exceptionCaught); in subtest_altsHandler()
|
D | AltsProtocolNegotiatorTest.java | 125 public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception { in setup() 127 super.exceptionCaught(ctx, cause); in setup()
|
/external/grpc-grpc-java/netty/src/main/java/io/grpc/netty/ |
D | WriteBufferingAndExceptionHandler.java | 85 public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) { in exceptionCaught() method in WriteBufferingAndExceptionHandler 171 exceptionCaught( in channelRead()
|
D | AbstractNettyHandler.java | 94 public final void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception { in exceptionCaught() method in AbstractNettyHandler 101 super.exceptionCaught(ctx, cause); in exceptionCaught()
|
/external/aws-sdk-java-v2/http-clients/netty-nio-client/src/main/java/software/amazon/awssdk/http/nio/netty/internal/http2/ |
D | Http2StreamExceptionHandler.java | 44 public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) { in exceptionCaught() method in Http2StreamExceptionHandler
|
D | Http2SettingsFrameHandler.java | 63 public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) { in exceptionCaught() method in Http2SettingsFrameHandler
|
/external/aws-sdk-java-v2/http-clients/netty-nio-client/src/main/java/software/amazon/awssdk/http/nio/netty/internal/ |
D | UnusedChannelExceptionHandler.java | 48 public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) { in exceptionCaught() method in UnusedChannelExceptionHandler
|
D | FutureCancelHandler.java | 42 public void exceptionCaught(ChannelHandlerContext ctx, Throwable e) { in exceptionCaught() method in FutureCancelHandler
|
D | ProxyTunnelInitHandler.java | 125 public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) { in exceptionCaught() method in ProxyTunnelInitHandler
|
D | ResponseHandler.java | 130 exceptionCaught(channelContext, e); in channelRead0() 214 public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception { in exceptionCaught() method in ResponseHandler
|
/external/grpc-grpc-java/xds/src/main/java/io/grpc/xds/internal/security/ |
D | SecurityProtocolNegotiators.java | 172 public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) { in exceptionCaught() method in SecurityProtocolNegotiators.BufferReadsHandler 237 public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) in exceptionCaught() method in SecurityProtocolNegotiators.ClientSecurityHandler
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/ |
D | CollationMiscTest.java | 3690 boolean exceptionCaught = false; in TestFrozeness() 3699 exceptionCaught = true; in TestFrozeness() 3701 assertTrue("Frozen collator allowed change.", exceptionCaught); in TestFrozeness() 3702 exceptionCaught = false; in TestFrozeness() 3708 exceptionCaught = true; in TestFrozeness() 3710 assertTrue("Frozen collator allowed change.", exceptionCaught); in TestFrozeness() 3711 exceptionCaught = false; in TestFrozeness() 3717 exceptionCaught = true; in TestFrozeness() 3719 assertTrue("Frozen collator allowed change.", exceptionCaught); in TestFrozeness() 3720 exceptionCaught = false; in TestFrozeness()
|
/external/icu/icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/ |
D | CollationMiscTest.java | 3687 boolean exceptionCaught = false; in TestFrozeness() 3696 exceptionCaught = true; in TestFrozeness() 3698 assertTrue("Frozen collator allowed change.", exceptionCaught); in TestFrozeness() 3699 exceptionCaught = false; in TestFrozeness() 3705 exceptionCaught = true; in TestFrozeness() 3707 assertTrue("Frozen collator allowed change.", exceptionCaught); in TestFrozeness() 3708 exceptionCaught = false; in TestFrozeness() 3714 exceptionCaught = true; in TestFrozeness() 3716 assertTrue("Frozen collator allowed change.", exceptionCaught); in TestFrozeness() 3717 exceptionCaught = false; in TestFrozeness()
|
/external/aws-sdk-java-v2/http-clients/netty-nio-client/src/main/java/software/amazon/awssdk/http/nio/netty/internal/nrs/ |
D | HandlerSubscriber.java | 182 public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception { in exceptionCaught() method in HandlerSubscriber
|
D | HandlerPublisher.java | 460 public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception { in exceptionCaught() method in HandlerPublisher
|
/external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/ |
D | NettyHttpClient.java | 191 @Override public void exceptionCaught(ChannelHandlerContext context, Throwable cause) { in exceptionCaught() method in NettyHttpClient.HttpChannel
|
/external/cronet/stable/components/cronet/android/test/src/org/chromium/net/ |
D | Http2TestHandler.java | 546 public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception { in exceptionCaught() method in Http2TestHandler 547 super.exceptionCaught(ctx, cause); in exceptionCaught()
|
/external/cronet/tot/components/cronet/android/test/src/org/chromium/net/ |
D | Http2TestHandler.java | 546 public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception { in exceptionCaught() method in Http2TestHandler 547 super.exceptionCaught(ctx, cause); in exceptionCaught()
|