OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:clientChain
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/packages/Osu/src/com/android/configparse/
ConfigBuilder.java
35
List<X509Certificate>
clientChain
, PrivateKey key)
45
if (key != null ||
clientChain
!= null) {
51
config = buildTLSConfig(homeSP,
clientChain
, key);
56
if (key != null ||
clientChain
!= null || caCert != null) {
125
List<X509Certificate>
clientChain
,
133
if (clientKey == null ||
clientChain
== null) {
143
for (X509Certificate certificate :
clientChain
) {
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/configparse/
ConfigBuilder.java
100
List<X509Certificate>
clientChain
= null;
146
clientChain
= new ArrayList<>();
152
clientChain
.add((X509Certificate) certificate);
154
Log.d(TAG, "Chain: " +
clientChain
.size());
169
return buildConfig(homeSP, caCert,
clientChain
, clientKey);
173
List<X509Certificate>
clientChain
, PrivateKey key)
181
if (key != null ||
clientChain
!= null) {
188
config = buildTLSConfig(homeSP,
clientChain
, key, caCert);
193
if (key != null ||
clientChain
!= null || caCert != null) {
281
List<X509Certificate>
clientChain
,
[
all
...]
/libcore/support/src/test/java/libcore/javax/net/ssl/
TestSSLContext.java
371
Certificate[]
clientChain
)
373
X509Certificate[] chain = (X509Certificate[])
clientChain
;
Completed in 77 milliseconds