OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:connectionSecurity
(Results
1 - 3
of
3
) sorted by null
/packages/apps/Email/src/com/android/email/mail/transport/
SmtpSender.java
81
int
connectionSecurity
= Transport.CONNECTION_SECURITY_NONE;
85
connectionSecurity
= Transport.CONNECTION_SECURITY_SSL;
88
connectionSecurity
= Transport.CONNECTION_SECURITY_TLS;
94
mTransport.setSecurity(
connectionSecurity
, trustCertificates);
/packages/apps/Email/src/com/android/email/mail/store/
Pop3Store.java
115
int
connectionSecurity
= Transport.CONNECTION_SECURITY_NONE;
119
connectionSecurity
= Transport.CONNECTION_SECURITY_SSL;
122
connectionSecurity
= Transport.CONNECTION_SECURITY_TLS;
128
mTransport.setSecurity(
connectionSecurity
, trustCertificates);
[
all
...]
ImapStore.java
153
int
connectionSecurity
= Transport.CONNECTION_SECURITY_NONE;
157
connectionSecurity
= Transport.CONNECTION_SECURITY_SSL;
160
connectionSecurity
= Transport.CONNECTION_SECURITY_TLS;
166
mRootTransport.setSecurity(
connectionSecurity
, trustCertificates);
[
all
...]
Completed in 161 milliseconds