Searched defs:FLAG_SSL (Results 1 - 1 of 1) sorted by relevance

/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
H A DHostAuth.java54 public static final int FLAG_SSL = 0x01; // Use SSL field in class:HostAuth
61 public static final int FLAG_TRANSPORTSECURITY_MASK = FLAG_SSL | FLAG_TLS | FLAG_TRUST_ALL;
170 case FLAG_SSL:
173 case FLAG_SSL | FLAG_TRUST_ALL:
207 flags |= HostAuth.FLAG_SSL;
373 mFlags &= ~(FLAG_SSL | FLAG_TLS | FLAG_TRUST_ALL);
376 boolean useSecureConnection = (flags & (FLAG_SSL | FLAG_TLS)) != 0;
384 boolean useSSL = ((mFlags & FLAG_SSL) != 0);
396 return (mFlags & FLAG_SSL) != 0;

Completed in 73 milliseconds