Home
last modified time | relevance | path

Searched defs:elg (Results 1 – 21 of 21) sorted by relevance

/external/aws-crt-java/src/test/java/software/amazon/awssdk/crt/test/
DS3ClientTest.java78 try (EventLoopGroup elg = new EventLoopGroup(cpuGroup, numThreads)) { in createS3Client()
83 private S3Client createS3Client(S3ClientOptions options, EventLoopGroup elg) { in createS3Client()
133 try (EventLoopGroup elg = new EventLoopGroup(0, 1); in testS3ClientCreateDestroyWithCredentialsProvider()
150 try (EventLoopGroup elg = new EventLoopGroup(0, 1); in testS3ClientCreateDestroyWithoutSigningConfig()
167 …try (EventLoopGroup elg = new EventLoopGroup(0, 1); EventLoopGroup retry_elg = new EventLoopGroup(… in testS3ClientCreateDestroyRetryOptions()
173 .withStandardRetryOptions(standardRetryOptions), elg)) { in testS3ClientCreateDestroyRetryOptions() argument
188 try (EventLoopGroup elg = new EventLoopGroup(0, 1)) { in testS3ClientCreateDestroyRetryOptionsUnspecifiedELG()
194 .withStandardRetryOptions(standardRetryOptions), elg)) { in testS3ClientCreateDestroyRetryOptionsUnspecifiedELG() argument
208 …try (EventLoopGroup elg = new EventLoopGroup(0, 1); EventLoopGroup retry_elg = new EventLoopGroup(… in testS3ClientCreateDestroyTcpKeepAliveOptions()
216 .withS3TcpKeepAliveOptions(tcpKeepAliveOptions), elg)) { in testS3ClientCreateDestroyTcpKeepAliveOptions() argument
[all …]
DEventLoopGroupTest.java20 try (EventLoopGroup elg = new EventLoopGroup(1)) { in testCreateDestroy()
30 try (EventLoopGroup elg = new EventLoopGroup(0,2)) { in testCreateDestroyWithCpuGroup()
DMqtt5ClientTest.java92 EventLoopGroup elg = new EventLoopGroup(1); in New_UC2()
200 EventLoopGroup elg = new EventLoopGroup(1); in New_UC4()
406 EventLoopGroup elg = new EventLoopGroup(1); in ConnDC_UC5()
452 EventLoopGroup elg = new EventLoopGroup(1); in ConnDC_UC6()
529 EventLoopGroup elg = new EventLoopGroup(1); in ConnWS_UC1()
572 EventLoopGroup elg = new EventLoopGroup(1); in ConnWS_UC2()
613 EventLoopGroup elg = new EventLoopGroup(1); in ConnWS_UC3()
659 EventLoopGroup elg = new EventLoopGroup(1); in ConnWS_UC5() local
716 EventLoopGroup elg = new EventLoopGroup(1); in ConnWS_UC6()
923 EventLoopGroup elg = new EventLoopGroup(1); in ConnNegativeID_UC3()
[all …]
DMqttClientConnectionMethodTest.java211 try (EventLoopGroup elg = new EventLoopGroup(1); in ConnWS_Cred_UC2()
237 try (EventLoopGroup elg = new EventLoopGroup(1); in ConnWS_Cred_UC3()
269 try (EventLoopGroup elg = new EventLoopGroup(1); in ConnWS_Cred_UC4()
DServerBootstrapTest.java16 EventLoopGroup elg = new EventLoopGroup(1); in testCreateDestroy() local
DClientBootstrapTest.java24 EventLoopGroup elg = new EventLoopGroup(1); in testCreateDestroy() local
DMqtt5to3AdapterConnectionTest.java167 EventLoopGroup elg = new EventLoopGroup(1); in TestCreationFull()
361 EventLoopGroup elg = new EventLoopGroup(1); in TestWebsocketMinimalConnectThroughMqtt5()
406 EventLoopGroup elg = new EventLoopGroup(1); in TestWebsocketHttpProxyConnectThroughMqtt5() local
558 EventLoopGroup elg = new EventLoopGroup(1); in TestWebsocketMinimalConnectThroughMqtt311()
603 EventLoopGroup elg = new EventLoopGroup(1); in TestWebsocketHttpProxyConnectThroughMqtt311() local
DCrtTestFixture.java281 try (EventLoopGroup elg = new EventLoopGroup(1); in hasAwsCredentials()
DMqttClientConnectionFixture.java160 try(EventLoopGroup elg = new EventLoopGroup(1); in connectDirectWithConfigThrows()
304 try (EventLoopGroup elg = new EventLoopGroup(1); in connectWebsocketsWithCredentialsProvider()
/external/aws-crt-java/src/main/java/software/amazon/awssdk/crt/io/
DClientBootstrap.java25 EventLoopGroup elg = EventLoopGroup.getOrCreateStaticDefault(); in ClientBootstrap() local
40 public ClientBootstrap(EventLoopGroup elg, HostResolver hr) throws CrtRuntimeException { in ClientBootstrap()
126 …private static native long clientBootstrapNew(ClientBootstrap bootstrap, long elg, long hr) throws… in clientBootstrapNew()
DServerBootstrap.java16 public ServerBootstrap(final EventLoopGroup elg) { in ServerBootstrap()
35 …private static native long serverBootstrapNew(ServerBootstrap bootstrap, long elg) throws CrtRunti… in serverBootstrapNew()
DHostResolver.java20 public HostResolver(EventLoopGroup elg) throws CrtRuntimeException { in HostResolver()
29 public HostResolver(EventLoopGroup elg, int maxEntries) throws CrtRuntimeException { in HostResolver()
DEventLoopGroup.java117 EventLoopGroup elg = null; in getOrCreateStaticDefault() local
138 private static native void eventLoopGroupDestroy(long elg); in eventLoopGroupDestroy()
DTlsContext.java56 private static native void tlsContextDestroy(long elg); in tlsContextDestroy()
DSocketOptions.java140 private static native void socketOptionsDestroy(long elg); in socketOptionsDestroy()
DTlsContextOptions.java576 private static native void tlsContextOptionsDestroy(long elg); in tlsContextOptionsDestroy()
/external/aws-crt-java/src/native/
Devent_loop_group.c101 struct aws_event_loop_group *elg = in Java_software_amazon_awssdk_crt_io_EventLoopGroup_eventLoopGroupNew() local
148 struct aws_event_loop_group *elg = aws_event_loop_group_new_default_pinned_to_cpu_group( in Java_software_amazon_awssdk_crt_io_EventLoopGroup_eventLoopGroupNewPinnedToCpuGroup() local
175 struct aws_event_loop_group *elg = (struct aws_event_loop_group *)elg_addr; in Java_software_amazon_awssdk_crt_io_EventLoopGroup_eventLoopGroupDestroy() local
Dserver_bootstrap.c40 struct aws_event_loop_group *elg = (struct aws_event_loop_group *)jni_elg; in Java_software_amazon_awssdk_crt_io_ServerBootstrap_serverBootstrapNew() local
Dclient_bootstrap.c80 struct aws_event_loop_group *elg = (struct aws_event_loop_group *)jni_elg; in Java_software_amazon_awssdk_crt_io_ClientBootstrap_clientBootstrapNew() local
/external/grpc-grpc-java/netty/src/test/java/io/grpc/netty/
DProtocolNegotiatorsTest.java872 DefaultEventLoopGroup elg = new DefaultEventLoopGroup(1); in clientTlsHandler_userEventTriggeredSslEvent_supportedProtocolH2() local
897 DefaultEventLoopGroup elg = new DefaultEventLoopGroup(1); in clientTlsHandler_userEventTriggeredSslEvent_supportedProtocolCustom() local
934 DefaultEventLoopGroup elg = new DefaultEventLoopGroup(1); in clientTlsHandler_userEventTriggeredSslEvent_unsupportedProtocol() local
1057 DefaultEventLoopGroup elg = new DefaultEventLoopGroup(1); in httpProxy_completes() local
1120 DefaultEventLoopGroup elg = new DefaultEventLoopGroup(1); in httpProxy_500() local
1173 EventLoopGroup elg = new DefaultEventLoopGroup(1); in waitUntilActiveHandler_firesNegotiation() local
DUdsNettyChannelProviderTest.java62 private EventLoopGroup elg; field in UdsNettyChannelProviderTest