OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mSslSocketFactory
(Results
1 - 3
of
3
) sorted by null
/frameworks/volley/src/com/android/volley/toolbox/
HurlStack.java
65
private final SSLSocketFactory
mSslSocketFactory
;
84
mSslSocketFactory
= sslSocketFactory;
171
if ("https".equals(url.getProtocol()) &&
mSslSocketFactory
!= null) {
172
((HttpsURLConnection)connection).setSSLSocketFactory(
mSslSocketFactory
);
/cts/tests/core/runner/src/android/test/
InstrumentationCtsTestRunner.java
208
private SSLSocketFactory
mSslSocketFactory
;
215
mSslSocketFactory
= HttpsURLConnection.getDefaultSSLSocketFactory();
226
HttpsURLConnection.setDefaultSSLSocketFactory(
mSslSocketFactory
);
/frameworks/base/core/java/android/net/http/
HttpsConnection.java
60
private static SSLSocketFactory
mSslSocketFactory
= null;
106
mSslSocketFactory
= sslContext.engineGetSocketFactory();
116
return
mSslSocketFactory
;
Completed in 196 milliseconds