Home
last modified time | relevance | path

Searched refs:useSsl (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
DEmailClientConnectionManager.java135 boolean useSsl, boolean trustAllServerCerts, String clientCertAlias) { in makeScheme() argument
139 return useSsl ? (trustAllServerCerts ? "httpts" : "https") : "http"; in makeScheme()
/packages/apps/Email/src/com/android/email/activity/setup/
DAccountSetupIncomingFragment.java432 private int getPortFromSecurityType(boolean useSsl) { in getPortFromSecurityType() argument
433 return useSsl ? mServiceInfo.portSsl : mServiceInfo.port; in getPortFromSecurityType()
442 public void onUseSslChanged(boolean useSsl) { in onUseSslChanged() argument
444 final int mode = useSsl ? View.VISIBLE : View.GONE; in onUseSslChanged()