Searched refs:FLAG_TLS (Results 1 - 8 of 8) sorted by relevance

/packages/apps/Email/tests/src/com/android/emailcommon/provider/
H A DHostAuthTests.java143 ha.setConnection("imap", "server", HostAuth.PORT_UNKNOWN, HostAuth.FLAG_TLS);
144 assertEquals(HostAuth.FLAG_TLS, ha.mFlags);
148 HostAuth.FLAG_TLS | HostAuth.FLAG_TRUST_ALL);
149 assertEquals(HostAuth.FLAG_TLS | HostAuth.FLAG_TRUST_ALL, ha.mFlags);
171 ha.setConnection("eas", "server", HostAuth.PORT_UNKNOWN, HostAuth.FLAG_TLS, "client-cert");
172 assertEquals(HostAuth.FLAG_TLS, ha.mFlags);
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
H A DHostAuth.java55 public static final int FLAG_TLS = 0x02; // Use TLS field in class:HostAuth
61 public static final int FLAG_TRANSPORTSECURITY_MASK = FLAG_SSL | FLAG_TLS | FLAG_TRUST_ALL;
176 case FLAG_TLS:
179 case FLAG_TLS | FLAG_TRUST_ALL:
209 flags |= HostAuth.FLAG_TLS;
373 mFlags &= ~(FLAG_SSL | FLAG_TLS | FLAG_TRUST_ALL);
376 boolean useSecureConnection = (flags & (FLAG_SSL | FLAG_TLS)) != 0;
/packages/apps/Dialer/java/com/android/voicemail/impl/mail/store/
H A DImapStore.java46 public static final int FLAG_TLS = 0x02; // Use TLS field in class:ImapStore
/packages/apps/Email/src/com/android/email/activity/setup/
H A DAccountSetupOutgoingFragment.java187 new SpinnerOption(HostAuth.FLAG_TLS, context.getString(
189 new SpinnerOption(HostAuth.FLAG_TLS | HostAuth.FLAG_TRUST_ALL, context.getString(
H A DAccountSetupFinal.java969 HostAuth.PORT_UNKNOWN, info.offerTls ? HostAuth.FLAG_TLS : HostAuth.FLAG_SSL);
978 HostAuth.PORT_UNKNOWN, HostAuth.FLAG_TLS);
H A DAccountSetupIncomingFragment.java246 new SpinnerOption(HostAuth.FLAG_TLS, context.getString(
248 securityTypes.add(new SpinnerOption(HostAuth.FLAG_TLS | HostAuth.FLAG_TRUST_ALL,
/packages/apps/Email/provider_src/com/android/email/mail/transport/
H A DMailTransport.java95 return (mHostAuth.mFlags & HostAuth.FLAG_TLS) != 0;
/packages/apps/Email/tests/src/com/android/email/mail/store/
H A DImapStoreUnitTests.java209 MockTransport mockTransport = openAndInjectMockTransport(HostAuth.FLAG_TLS,

Completed in 482 milliseconds