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

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

Completed in 584 milliseconds