Home
last modified time | relevance | path

Searched refs:mMaxAttachmentSize (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
DPolicy.java75 public int mMaxAttachmentSize; field in Policy
200 int policyMax = policy.mDontAllowAttachments ? 0 : (policy.mMaxAttachmentSize > 0) ? in setAttachmentFlagsForNewPolicy()
201 policy.mMaxAttachmentSize : Integer.MAX_VALUE; in setAttachmentFlagsForNewPolicy()
273 if (mMaxAttachmentSize != otherPolicy.mMaxAttachmentSize) return false; in equals()
327 mMaxAttachmentSize = cursor.getInt(CONTENT_MAX_ATTACHMENT_SIZE_COLUMN); in restore()
355 values.put(PolicyColumns.MAX_ATTACHMENT_SIZE, mMaxAttachmentSize); in toContentValues()
437 if (mMaxAttachmentSize > 0) { in toString()
438 appendPolicy(sb, "attmax", mMaxAttachmentSize); in toString()
489 dest.writeInt(mMaxAttachmentSize); in writeToParcel()
519 mMaxAttachmentSize = in.readInt(); in Policy()
/packages/apps/Email/tests/src/com/android/email/provider/
DPolicyTests.java159 policy2.mMaxAttachmentSize = 20000; in testSetAttachmentFlagsForNewPolicy()
172 policy3.mMaxAttachmentSize = 5001; in testSetAttachmentFlagsForNewPolicy()
206 policy.mMaxAttachmentSize = 22222; in testParcel()
/packages/apps/Email/provider_src/com/android/email/
DSecurityPolicy.java612 (oldPolicy.mMaxAttachmentSize != policy.mMaxAttachmentSize)) { in setAccountPolicy()