Home
last modified time | relevance | path

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

/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
DPolicy.java73 public boolean mDontAllowAttachments; field in Policy
200 int policyMax = policy.mDontAllowAttachments ? 0 : (policy.mMaxAttachmentSize > 0) ? in setAttachmentFlagsForNewPolicy()
271 if (mDontAllowAttachments != otherPolicy.mDontAllowAttachments) return false; in equals()
325 mDontAllowAttachments = cursor.getInt(CONTENT_DONT_ALLOW_ATTACHMENTS_COLUMN) == 1; in restore()
353 values.put(PolicyColumns.DONT_ALLOW_ATTACHMENTS, mDontAllowAttachments); in toContentValues()
431 if (mDontAllowAttachments) { in toString()
487 dest.writeInt(mDontAllowAttachments ? 1 : 0); in writeToParcel()
517 mDontAllowAttachments = in.readInt() == 1; in Policy()
/packages/apps/Email/tests/src/com/android/email/provider/
DPolicyTests.java126 policy1.mDontAllowAttachments = true; in testSetAttachmentFlagsForNewPolicy()
204 policy.mDontAllowAttachments = true; in testParcel()
/packages/apps/Email/provider_src/com/android/email/
DSecurityPolicy.java611 if ((oldPolicy.mDontAllowAttachments != policy.mDontAllowAttachments) || in setAccountPolicy()