Searched refs:mPasswordHistory (Results 1 - 6 of 6) sorted by relevance

/packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
H A DLegacyPolicySet.java76 policy.mPasswordHistory = (int) ((flags & PASSWORD_HISTORY_MASK) >> PASSWORD_HISTORY_SHIFT);
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
H A DPolicy.java65 public int mPasswordHistory; field in class:Policy
234 mPasswordHistory = 0;
260 if (mPasswordHistory != otherPolicy.mPasswordHistory) return false;
299 code += (mPasswordHistory << 15);
314 mPasswordHistory = cursor.getInt(CONTENT_PASSWORD_HISTORY_COLUMN);
344 values.put(PolicyColumns.PASSWORD_HISTORY, mPasswordHistory);
418 appendPolicy(sb, "hist", mPasswordHistory);
478 dest.writeInt(mPasswordHistory);
508 mPasswordHistory
[all...]
/packages/apps/Email/tests/src/com/android/email/
H A DSecurityPolicyTests.java119 policy.mPasswordHistory = passwordHistory;
177 assertEquals(5, p4out.mPasswordHistory);
203 assertEquals(5, p5out.mPasswordHistory);
485 if (ps.mPasswordHistory != policy.mPasswordHistory) return false;
523 private final int mPasswordHistory; field in class:SecurityPolicyTests.PolicySet
543 mPasswordHistory = (int) ((flags & LegacyPolicySet.PASSWORD_HISTORY_MASK)
/packages/apps/Email/provider_src/com/android/email/
H A DSecurityPolicy.java126 aggregate.mPasswordHistory = Integer.MIN_VALUE;
158 if (policy.mPasswordHistory > 0) {
159 aggregate.mPasswordHistory =
160 Math.max(policy.mPasswordHistory, aggregate.mPasswordHistory);
184 if (aggregate.mPasswordHistory == Integer.MIN_VALUE) aggregate.mPasswordHistory = 0;
366 if (policy.mPasswordHistory > 0) {
367 if (dpm.getPasswordHistoryLength(mAdminName) < policy.mPasswordHistory) {
431 dpm.setPasswordHistoryLength(mAdminName, aggregatePolicy.mPasswordHistory);
[all...]
/packages/apps/Email/tests/src/com/android/email/provider/
H A DPolicyTests.java196 policy.mPasswordHistory = 3;
/packages/apps/Email/src/com/android/email/activity/setup/
H A DAccountSettingsFragment.java598 if (policy.mPasswordHistory > 0) {

Completed in 119 milliseconds