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

  /packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
LegacyPolicySet.java 76 policy.mPasswordHistory = (int) ((flags & PASSWORD_HISTORY_MASK) >> PASSWORD_HISTORY_SHIFT);
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
Policy.java 64 public int mPasswordHistory;
224 mPasswordHistory = 0;
250 if (mPasswordHistory != otherPolicy.mPasswordHistory) return false;
289 code += (mPasswordHistory << 15);
304 mPasswordHistory = cursor.getInt(CONTENT_PASSWORD_HISTORY_COLUMN);
334 values.put(PolicyColumns.PASSWORD_HISTORY, mPasswordHistory);
408 appendPolicy(sb, "hist", mPasswordHistory);
468 dest.writeInt(mPasswordHistory);
498 mPasswordHistory = in.readInt()
    [all...]
  /packages/apps/Email/tests/src/com/android/email/
SecurityPolicyTests.java 119 policy.mPasswordHistory = passwordHistory;
177 assertEquals(5, p4out.mPasswordHistory);
203 assertEquals(5, p5out.mPasswordHistory);
536 if (ps.mPasswordHistory != policy.mPasswordHistory) return false;
574 private final int mPasswordHistory;
594 mPasswordHistory = (int) ((flags & LegacyPolicySet.PASSWORD_HISTORY_MASK)
  /packages/apps/Email/src/com/android/email/
SecurityPolicy.java 124 aggregate.mPasswordHistory = Integer.MIN_VALUE;
156 if (policy.mPasswordHistory > 0) {
157 aggregate.mPasswordHistory =
158 Math.max(policy.mPasswordHistory, aggregate.mPasswordHistory);
182 if (aggregate.mPasswordHistory == Integer.MIN_VALUE) aggregate.mPasswordHistory = 0;
364 if (policy.mPasswordHistory > 0) {
365 if (dpm.getPasswordHistoryLength(mAdminName) < policy.mPasswordHistory) {
429 dpm.setPasswordHistoryLength(mAdminName, aggregatePolicy.mPasswordHistory);
    [all...]
  /packages/apps/Email/tests/src/com/android/email/provider/
PolicyTests.java 194 policy.mPasswordHistory = 3;
  /packages/apps/Exchange/src/com/android/exchange/adapter/
ProvisionParser.java 152 policy.mPasswordHistory = getValueInt();
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSettingsFragment.java 519 if (policy.mPasswordHistory > 0) {
    [all...]

Completed in 198 milliseconds