HomeSort by relevance Sort by last modified time
    Searched refs:mMaxAttachmentSize (Results 1 - 3 of 3) sorted by null

  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
Policy.java 75 public int mMaxAttachmentSize;
200 int policyMax = policy.mDontAllowAttachments ? 0 : (policy.mMaxAttachmentSize > 0) ?
201 policy.mMaxAttachmentSize : Integer.MAX_VALUE;
273 if (mMaxAttachmentSize != otherPolicy.mMaxAttachmentSize) return false;
327 mMaxAttachmentSize = cursor.getInt(CONTENT_MAX_ATTACHMENT_SIZE_COLUMN);
355 values.put(PolicyColumns.MAX_ATTACHMENT_SIZE, mMaxAttachmentSize);
437 if (mMaxAttachmentSize > 0) {
438 appendPolicy(sb, "attmax", mMaxAttachmentSize);
489 dest.writeInt(mMaxAttachmentSize);
    [all...]
  /packages/apps/Email/tests/src/com/android/email/provider/
PolicyTests.java 159 policy2.mMaxAttachmentSize = 20000;
172 policy3.mMaxAttachmentSize = 5001;
206 policy.mMaxAttachmentSize = 22222;
  /packages/apps/Email/provider_src/com/android/email/
SecurityPolicy.java 612 (oldPolicy.mMaxAttachmentSize != policy.mMaxAttachmentSize)) {
    [all...]

Completed in 52 milliseconds