Home
last modified time | relevance | path

Searched defs:clientBootstrap (Results 1 – 18 of 18) sorted by relevance

/aosp_15_r20/external/aws-crt-java/src/main/java/software/amazon/awssdk/crt/auth/credentials/
H A DStsWebIdentityCredentialsProvider.java44 : builder.clientBootstrap) { in StsWebIdentityCredentialsProvider()
73 Builder withClientBootstrap(ClientBootstrap clientBootstrap); in withClientBootstrap()
90 private ClientBootstrap clientBootstrap; field in StsWebIdentityCredentialsProvider.BuilderImpl
96 public Builder withClientBootstrap(ClientBootstrap clientBootstrap) { in withClientBootstrap()
H A DProfileCredentialsProvider.java47 : builder.clientBootstrap) { in ProfileCredentialsProvider()
85 Builder withClientBootstrap(ClientBootstrap clientBootstrap); in withClientBootstrap()
125 private ClientBootstrap clientBootstrap; field in ProfileCredentialsProvider.BuilderImpl
134 public Builder withClientBootstrap(ClientBootstrap clientBootstrap) { in withClientBootstrap()
H A DEcsCredentialsProvider.java48 : builder.clientBootstrap) { in EcsCredentialsProvider()
86 Builder withClientBootstrap(ClientBootstrap clientBootstrap); in withClientBootstrap()
121 private ClientBootstrap clientBootstrap; field in EcsCredentialsProvider.BuilderImpl
130 public Builder withClientBootstrap(ClientBootstrap clientBootstrap) { in withClientBootstrap()
H A DStsCredentialsProvider.java47 : builder.clientBootstrap) { in StsCredentialsProvider()
80 Builder withClientBootstrap(ClientBootstrap clientBootstrap); in withClientBootstrap()
122 private ClientBootstrap clientBootstrap; field in StsCredentialsProvider.BuilderImpl
132 public Builder withClientBootstrap(ClientBootstrap clientBootstrap) { in withClientBootstrap()
H A DDefaultChainCredentialsProvider.java20 private ClientBootstrap clientBootstrap; field in DefaultChainCredentialsProvider.DefaultChainCredentialsProviderBuilder
32 …ublic DefaultChainCredentialsProviderBuilder withClientBootstrap(ClientBootstrap clientBootstrap) { in withClientBootstrap()
51 ClientBootstrap clientBootstrap = builder.getClientBootstrap(); in DefaultChainCredentialsProvider() local
H A DX509CredentialsProvider.java31 private ClientBootstrap clientBootstrap; field in X509CredentialsProvider.X509CredentialsProviderBuilder
45 public X509CredentialsProviderBuilder withClientBootstrap(ClientBootstrap clientBootstrap) { in withClientBootstrap()
141 ClientBootstrap clientBootstrap = builder.getClientBootstrap(); in X509CredentialsProvider() local
H A DCognitoCredentialsProvider.java52 private ClientBootstrap clientBootstrap; field in CognitoCredentialsProvider.CognitoCredentialsProviderBuilder
116 … public CognitoCredentialsProviderBuilder withClientBootstrap(ClientBootstrap clientBootstrap) { in withClientBootstrap()
170 ClientBootstrap clientBootstrap = builder.getClientBootstrap(); in CognitoCredentialsProvider() local
/aosp_15_r20/external/aws-crt-java/src/test/java/software/amazon/awssdk/crt/test/
H A DEventStreamClientConnectionTest.java33 ClientBootstrap clientBootstrap = new ClientBootstrap(elGroup, null); in testConnectionHandling() local
112 ClientBootstrap clientBootstrap = new ClientBootstrap(elGroup, null); in testConnectionProtocolMessageHandling() local
220 ClientBootstrap clientBootstrap = new ClientBootstrap(elGroup, null); in testConnectionProtocolMessageWithExtraHeadersHandling() local
355 ClientBootstrap clientBootstrap = new ClientBootstrap(elGroup, null); in testContinuationMessageHandling() local
502 ClientBootstrap clientBootstrap = new ClientBootstrap(elGroup, null); in testContinuationMessageWithExtraHeadersHandling() local
/aosp_15_r20/external/aws-crt-java/src/main/java/software/amazon/awssdk/crt/mqtt/
H A DMqttClient.java29 public MqttClient(ClientBootstrap clientBootstrap) throws CrtRuntimeException { in MqttClient()
51 …public MqttClient(ClientBootstrap clientBootstrap, TlsContext context) throws CrtRuntimeException { in MqttClient()
/aosp_15_r20/external/aws-crt-java/samples/s3/src/main/java/com/example/s3/
H A DPutGet.java45 …EventLoopGroup eventLoopGroup = new EventLoopGroup(0 /* cpuGroup */, 0 /* numThreads 0=default */); in main()
47 ClientBootstrap clientBootstrap = new ClientBootstrap(eventLoopGroup, hostResolver); in main() argument
/aosp_15_r20/external/aws-crt-java/src/main/java/software/amazon/awssdk/crt/http/
H A DHttpClientConnectionManagerOptions.java21 private ClientBootstrap clientBootstrap; field in HttpClientConnectionManagerOptions
51 public HttpClientConnectionManagerOptions withClientBootstrap(ClientBootstrap clientBootstrap) { in withClientBootstrap()
H A DHttpClientConnectionManager.java52 ClientBootstrap clientBootstrap = options.getClientBootstrap(); in HttpClientConnectionManager() local
H A DHttp2StreamManager.java49 ClientBootstrap clientBootstrap = connectionManagerOptions.getClientBootstrap(); in Http2StreamManager() local
/aosp_15_r20/external/aws-sdk-java-v2/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/crt/
H A DS3NativeClientConfiguration.java51 private final ClientBootstrap clientBootstrap; field in S3NativeClientConfiguration
156 public ClientBootstrap clientBootstrap() { in clientBootstrap() method in S3NativeClientConfiguration
/aosp_15_r20/external/aws-crt-java/src/main/java/software/amazon/awssdk/crt/s3/
H A DS3ClientOptions.java22 private ClientBootstrap clientBootstrap; field in S3ClientOptions
91 public S3ClientOptions withClientBootstrap(ClientBootstrap clientBootstrap) { in withClientBootstrap()
H A DS3Client.java210 private static native long s3ClientNew(S3Client thisObj, byte[] region, long clientBootstrap, in s3ClientNew()
/aosp_15_r20/external/aws-sdk-java-v2/http-clients/aws-crt-client/src/main/java/software/amazon/awssdk/http/crt/
H A DAwsCrtHttpClientBase.java76 try (ClientBootstrap clientBootstrap = new ClientBootstrap(null, null); in AwsCrtHttpClientBase()
/aosp_15_r20/external/aws-crt-java/samples/CustomKeyOps/src/main/java/com/example/customkeyops/
H A DCustomKeyOps.java221 ClientBootstrap clientBootstrap = new ClientBootstrap(eventLoopGroup, resolver); in main() local