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

  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
Policy.java 70 public boolean mDontAllowCamera;
302 if (mDontAllowCamera != otherPolicy.mDontAllowCamera) return false;
347 mDontAllowCamera = cursor.getInt(CONTENT_DONT_ALLOW_CAMERA_COLUMN) == 1;
372 values.put(PolicyColumns.DONT_ALLOW_CAMERA, mDontAllowCamera);
446 if (mDontAllowCamera) {
502 dest.writeInt(mDontAllowCamera ? 1 : 0);
530 mDontAllowCamera = in.readInt() == 1;
  /packages/apps/Email/src/com/android/email/
SecurityPolicy.java 158 aggregate.mDontAllowCamera |= policy.mDontAllowCamera;
246 // indicate as such in the mDontAllowCamera policy
273 // clear the mDontAllowCamera policy
415 if (policy.mDontAllowCamera && !dpm.getCameraDisabled(mAdminName)) {
469 dpm.setCameraDisabled(mAdminName, aggregatePolicy.mDontAllowCamera);
    [all...]
  /packages/apps/Email/tests/src/com/android/email/
SecurityPolicyTests.java 122 policy.mDontAllowCamera = dontAllowCamera;
182 assertTrue(p4out.mDontAllowCamera);
207 assertTrue(p5out.mDontAllowCamera);
  /packages/apps/Email/tests/src/com/android/email/provider/
PolicyTests.java 201 policy.mDontAllowCamera = false;
  /packages/apps/Exchange/src/com/android/exchange/adapter/
ProvisionParser.java 130 policy.mDontAllowCamera = (getValueInt() == 0);

Completed in 129 milliseconds