HomeSort by relevance Sort by last modified time
    Searched refs:mPasswordHistory (Results 1 - 6 of 6) 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 63 public int mPasswordHistory;
270 mPasswordHistory = 0;
295 if (mPasswordHistory != otherPolicy.mPasswordHistory) return false;
322 code += (mPasswordHistory << 15);
337 mPasswordHistory = cursor.getInt(CONTENT_PASSWORD_HISTORY_COLUMN);
364 values.put(PolicyColumns.PASSWORD_HISTORY, mPasswordHistory);
436 appendPolicy(sb, "hist", mPasswordHistory);
494 dest.writeInt(mPasswordHistory);
522 mPasswordHistory = in.readInt()
    [all...]
  /packages/apps/Email/src/com/android/email/
SecurityPolicy.java 112 aggregate.mPasswordHistory = Integer.MIN_VALUE;
144 if (policy.mPasswordHistory > 0) {
145 aggregate.mPasswordHistory =
146 Math.max(policy.mPasswordHistory, aggregate.mPasswordHistory);
170 if (aggregate.mPasswordHistory == Integer.MIN_VALUE) aggregate.mPasswordHistory = 0;
398 if (policy.mPasswordHistory > 0) {
399 if (dpm.getPasswordHistoryLength(mAdminName) < policy.mPasswordHistory) {
459 dpm.setPasswordHistoryLength(mAdminName, aggregatePolicy.mPasswordHistory);
    [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/tests/src/com/android/email/provider/
PolicyTests.java 194 policy.mPasswordHistory = 3;
  /packages/apps/Exchange/src/com/android/exchange/adapter/
ProvisionParser.java 127 policy.mPasswordHistory = getValueInt();

Completed in 219 milliseconds