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

/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
H A DPolicy.java72 public boolean mDontAllowAttachments; field in class:Policy
190 int policyMax = policy.mDontAllowAttachments ? 0 : (policy.mMaxAttachmentSize > 0) ?
261 if (mDontAllowAttachments != otherPolicy.mDontAllowAttachments) return false;
315 mDontAllowAttachments = cursor.getInt(CONTENT_DONT_ALLOW_ATTACHMENTS_COLUMN) == 1;
343 values.put(PolicyColumns.DONT_ALLOW_ATTACHMENTS, mDontAllowAttachments);
421 if (mDontAllowAttachments) {
477 dest.writeInt(mDontAllowAttachments ? 1 : 0);
507 mDontAllowAttachments = in.readInt() == 1;

Completed in 43 milliseconds