Home
last modified time | relevance | path

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

/packages/apps/Email/tests/src/com/android/emailcommon/provider/
DHostAuthTests.java84 assertEquals(HostAuth.FLAG_AUTHENTICATE, ha.mFlags); in testSetLoginAuthenticate()
88 assertEquals(HostAuth.FLAG_AUTHENTICATE, ha.mFlags); in testSetLoginAuthenticate()
92 assertEquals(~HostAuth.FLAG_AUTHENTICATE, ha.mFlags); in testSetLoginAuthenticate()
96 assertEquals(HostAuth.FLAG_AUTHENTICATE, ha.mFlags); in testSetLoginAuthenticate()
100 assertEquals(~HostAuth.FLAG_AUTHENTICATE, ha.mFlags); in testSetLoginAuthenticate()
104 assertEquals(~HostAuth.FLAG_AUTHENTICATE, ha.mFlags); in testSetLoginAuthenticate()
152 ha.setConnection("imap", "server", HostAuth.PORT_UNKNOWN, HostAuth.FLAG_AUTHENTICATE); in testSetConnectionFlags()
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
DHostAuth.java56 public static final int FLAG_AUTHENTICATE = 0x04; // Use name/password for authentication field in HostAuth
326 mFlags &= ~FLAG_AUTHENTICATE; in setUserName()
328 mFlags |= FLAG_AUTHENTICATE; in setUserName()
340 mFlags &= ~FLAG_AUTHENTICATE; in setLogin()
342 mFlags |= FLAG_AUTHENTICATE; in setLogin()
/packages/apps/Dialer/java/com/android/voicemail/impl/mail/store/
DImapStore.java47 public static final int FLAG_AUTHENTICATE = 0x04; // Use name/password for authentication field in ImapStore
/packages/apps/Email/src/com/android/email/activity/setup/
DAccountSetupOutgoingFragment.java235 if ((sendAuth.mFlags & HostAuth.FLAG_AUTHENTICATE) != 0) { in loadSettings()