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 127 assertEquals(Policy.PASSWORD_MODE_STRONG, policy.mPasswordMode);
138 assertEquals(Policy.PASSWORD_MODE_NONE, policy.mPasswordMode);
149 assertEquals(Policy.PASSWORD_MODE_SIMPLE, policy.mPasswordMode);
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
Policy.java 61 public int mPasswordMode;
133 mPasswordMode = PASSWORD_MODE_NONE;
229 if (mPasswordMode == PASSWORD_MODE_NONE) {
237 if ((mPasswordMode != PASSWORD_MODE_SIMPLE) &&
238 (mPasswordMode != PASSWORD_MODE_STRONG)) {
243 if (mPasswordMode == PASSWORD_MODE_SIMPLE) {
263 if (mPasswordMode != otherPolicy.mPasswordMode) return false;
302 code += (mPasswordMode << 26);
311 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 129 if (policy.mPasswordMode == Policy.PASSWORD_MODE_NONE) {
130 policy.mPasswordMode = Policy.PASSWORD_MODE_SIMPLE;
139 policy.mPasswordMode = Policy.PASSWORD_MODE_STRONG;
366 policy.mPasswordMode = Policy.PASSWORD_MODE_NONE;
483 policy.mPasswordMode = Policy.PASSWORD_MODE_STRONG;
485 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);
480 if ((ps.mPasswordMode >> LegacyPolicySet.PASSWORD_MODE_SHIFT) != policy.mPasswordMode) {
518 private final int mPasswordMode;
534 mPasswordMode =
  /packages/apps/Email/provider_src/com/android/email/
SecurityPolicy.java 124 aggregate.mPasswordMode = Integer.MIN_VALUE;
149 aggregate.mPasswordMode = Math.max(policy.mPasswordMode, aggregate.mPasswordMode);
181 if (aggregate.mPasswordMode == Integer.MIN_VALUE) aggregate.mPasswordMode = 0;
337 if (policy.mPasswordMode > 0) {
    [all...]
  /packages/apps/Email/tests/src/com/android/email/provider/
PolicyTests.java 192 policy.mPasswordMode = Policy.PASSWORD_MODE_STRONG;
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSettingsFragment.java 595 if (policy.mPasswordMode != Policy.PASSWORD_MODE_NONE) {
    [all...]

Completed in 366 milliseconds