Home
last modified time | relevance | path

Searched refs:mPasswordRecoveryEnabled (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
DPolicy.java80 public boolean mPasswordRecoveryEnabled; field in Policy
278 if (mPasswordRecoveryEnabled != otherPolicy.mPasswordRecoveryEnabled) return false; in equals()
332 mPasswordRecoveryEnabled = cursor.getInt(CONTENT_PASSWORD_RECOVERY_ENABLED_COLUMN) == 1; in restore()
360 values.put(PolicyColumns.PASSWORD_RECOVERY_ENABLED, mPasswordRecoveryEnabled); in toContentValues()
494 dest.writeInt(mPasswordRecoveryEnabled ? 1 : 0); in writeToParcel()
524 mPasswordRecoveryEnabled = in.readInt() == 1; in Policy()
/packages/apps/Email/tests/src/com/android/email/provider/
DPolicyTests.java211 policy.mPasswordRecoveryEnabled = true; in testParcel()