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 65 public int mPasswordHistory;
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 = 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);
485 if (ps.mPasswordHistory != policy.mPasswordHistory) return false;
523 private final int mPasswordHistory;
543 mPasswordHistory = (int) ((flags & LegacyPolicySet.PASSWORD_HISTORY_MASK)
  /packages/apps/Email/src/com/android/email/
SecurityPolicy.java 125 aggregate.mPasswordHistory = Integer.MIN_VALUE;
157 if (policy.mPasswordHistory > 0) {
158 aggregate.mPasswordHistory =
159 Math.max(policy.mPasswordHistory, aggregate.mPasswordHistory);
183 if (aggregate.mPasswordHistory == Integer.MIN_VALUE) aggregate.mPasswordHistory = 0;
365 if (policy.mPasswordHistory > 0) {
366 if (dpm.getPasswordHistoryLength(mAdminName) < policy.mPasswordHistory) {
430 dpm.setPasswordHistoryLength(mAdminName, aggregatePolicy.mPasswordHistory);
    [all...]
  /packages/apps/Email/tests/src/com/android/email/provider/
PolicyTests.java 196 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 596 if (policy.mPasswordHistory > 0) {
    [all...]

Completed in 279 milliseconds