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

  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
Policy.java 73 public boolean mDontAllowAttachments;
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/
PolicyTests.java 126 policy1.mDontAllowAttachments = true;
204 policy.mDontAllowAttachments = true;
  /packages/apps/Exchange/src/com/android/exchange/adapter/
ProvisionParser.java 100 if (policy.mDontAllowAttachments) {
228 policy.mDontAllowAttachments = getValueInt() != 1;
EmailSyncParser.java 518 if (mPolicy.mDontAllowAttachments ||
    [all...]
  /packages/apps/Email/provider_src/com/android/email/
SecurityPolicy.java 611 if ((oldPolicy.mDontAllowAttachments != policy.mDontAllowAttachments) ||
    [all...]

Completed in 64 milliseconds