HomeSort by relevance Sort by last modified time
    Searched refs:mPasswordHistory (Results 1 - 4 of 4) 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 61 public int mPasswordHistory;
221 mPasswordHistory = 0;
247 if (mPasswordHistory != otherPolicy.mPasswordHistory) return false;
286 code += (mPasswordHistory << 15);
301 mPasswordHistory = cursor.getInt(CONTENT_PASSWORD_HISTORY_COLUMN);
331 values.put(PolicyColumns.PASSWORD_HISTORY, mPasswordHistory);
405 appendPolicy(sb, "hist", mPasswordHistory);
463 dest.writeInt(mPasswordHistory);
493 mPasswordHistory = in.readInt()
    [all...]
  /packages/apps/Email/src/com/android/email/
SecurityPolicy.java 121 ap.mPasswordHistory = Integer.MIN_VALUE;
152 if (policy.mPasswordHistory > 0) {
153 ap.mPasswordHistory =
154 Math.max(policy.mPasswordHistory, ap.mPasswordHistory);
178 if (ap.mPasswordHistory == Integer.MIN_VALUE) ap.mPasswordHistory = 0;
406 if (policy.mPasswordHistory > 0) {
407 if (dpm.getPasswordHistoryLength(mAdminName) < policy.mPasswordHistory) {
472 dpm.setPasswordHistoryLength(mAdminName, aggregatePolicy.mPasswordHistory);
    [all...]
  /packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
ProvisionParser.java 147 policy.mPasswordHistory = getValueInt();

Completed in 282 milliseconds