Home
last modified time | relevance | path

Searched refs:FLAG_AUTHENTICATE (Results 1 – 5 of 5) sorted by relevance

/packages/apps/Email/tests/src/com/android/emailcommon/provider/
DHostAuthTests.java77 assertEquals(HostAuth.FLAG_AUTHENTICATE, ha.mFlags); in testSetLoginAuthenticate()
81 assertEquals(HostAuth.FLAG_AUTHENTICATE, ha.mFlags); in testSetLoginAuthenticate()
85 assertEquals(HostAuth.FLAG_AUTHENTICATE, ha.mFlags); in testSetLoginAuthenticate()
89 assertEquals(HostAuth.FLAG_AUTHENTICATE, ha.mFlags); in testSetLoginAuthenticate()
93 assertEquals(~HostAuth.FLAG_AUTHENTICATE, ha.mFlags); in testSetLoginAuthenticate()
97 assertEquals(~HostAuth.FLAG_AUTHENTICATE, ha.mFlags); in testSetLoginAuthenticate()
145 ha.setConnection("imap", "server", HostAuth.PORT_UNKNOWN, HostAuth.FLAG_AUTHENTICATE); in testSetConnectionFlags()
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
DHostAuth.java52 public static final int FLAG_AUTHENTICATE = 0x04; // Use name/password for authentication field in HostAuth
222 mFlags &= ~FLAG_AUTHENTICATE; in setLogin()
224 mFlags |= FLAG_AUTHENTICATE; in setLogin()
233 if ((mFlags & FLAG_AUTHENTICATE) != 0) { in getLogin()
/packages/apps/Email/src/com/android/email/activity/setup/
DAccountSetupOutgoingFragment.java253 if ((sendAuth.mFlags & HostAuth.FLAG_AUTHENTICATE) != 0) { in loadSettings()
266 int flags = sendAuth.mFlags & ~HostAuth.FLAG_AUTHENTICATE; in loadSettings()
DAccountSetupIncomingFragment.java357 flags &= ~HostAuth.FLAG_AUTHENTICATE; in loadSettings()
/packages/apps/Exchange/exchange2/src/com/android/exchange/
DEasSyncService.java774 HostAuth.FLAG_SSL | HostAuth.FLAG_AUTHENTICATE; in tryAutodiscover()