HomeSort by relevance Sort by last modified time
    Searched refs:mPasswordMode (Results 1 - 8 of 8) sorted by null

  /packages/apps/Exchange/tests/src/com/android/exchange/adapter/
ProvisionParserTests.java 123 assertEquals(Policy.PASSWORD_MODE_STRONG, policy.mPasswordMode);
134 assertEquals(Policy.PASSWORD_MODE_NONE, policy.mPasswordMode);
145 assertEquals(Policy.PASSWORD_MODE_SIMPLE, policy.mPasswordMode);
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
Policy.java 60 public int mPasswordMode;
132 mPasswordMode = PASSWORD_MODE_NONE;
219 if (mPasswordMode == PASSWORD_MODE_NONE) {
227 if ((mPasswordMode != PASSWORD_MODE_SIMPLE) &&
228 (mPasswordMode != PASSWORD_MODE_STRONG)) {
233 if (mPasswordMode == PASSWORD_MODE_SIMPLE) {
253 if (mPasswordMode != otherPolicy.mPasswordMode) return false;
292 code += (mPasswordMode << 26);
301 mPasswordMode = cursor.getInt(CONTENT_PASSWORD_MODE_COLUMN)
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
LegacyPolicySet.java 70 policy.mPasswordMode = ((int) (flags & PASSWORD_MODE_MASK)) >> PASSWORD_MODE_SHIFT;
  /packages/apps/Exchange/src/com/android/exchange/adapter/
ProvisionParser.java 128 if (policy.mPasswordMode == Policy.PASSWORD_MODE_NONE) {
129 policy.mPasswordMode = Policy.PASSWORD_MODE_SIMPLE;
138 policy.mPasswordMode = Policy.PASSWORD_MODE_STRONG;
356 policy.mPasswordMode = Policy.PASSWORD_MODE_NONE;
473 policy.mPasswordMode = Policy.PASSWORD_MODE_STRONG;
475 policy.mPasswordMode = Policy.PASSWORD_MODE_SIMPLE;
  /packages/apps/Email/tests/src/com/android/email/
SecurityPolicyTests.java 114 policy.mPasswordMode = passwordMode;
173 assertEquals(Policy.PASSWORD_MODE_STRONG, p4out.mPasswordMode);
199 assertEquals(Policy.PASSWORD_MODE_STRONG, p5out.mPasswordMode);
531 if ((ps.mPasswordMode >> LegacyPolicySet.PASSWORD_MODE_SHIFT) != policy.mPasswordMode) {
569 private final int mPasswordMode;
585 mPasswordMode =
  /packages/apps/Email/src/com/android/email/
SecurityPolicy.java 122 aggregate.mPasswordMode = Integer.MIN_VALUE;
147 aggregate.mPasswordMode = Math.max(policy.mPasswordMode, aggregate.mPasswordMode);
179 if (aggregate.mPasswordMode == Integer.MIN_VALUE) aggregate.mPasswordMode = 0;
335 if (policy.mPasswordMode > 0) {
    [all...]
  /packages/apps/Email/tests/src/com/android/email/provider/
PolicyTests.java 190 policy.mPasswordMode = Policy.PASSWORD_MODE_STRONG;
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSettingsFragment.java 516 if (policy.mPasswordMode != Policy.PASSWORD_MODE_NONE) {
    [all...]

Completed in 877 milliseconds