Home
last modified time | relevance | path

Searched refs:mDontAllowCamera (Results 1 – 5 of 5) sorted by relevance

/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
DPolicy.java72 public boolean mDontAllowCamera; field in Policy
264 if (mDontAllowCamera != otherPolicy.mDontAllowCamera) return false; in equals()
324 mDontAllowCamera = cursor.getInt(CONTENT_DONT_ALLOW_CAMERA_COLUMN) == 1; in restore()
352 values.put(PolicyColumns.DONT_ALLOW_CAMERA, mDontAllowCamera); in toContentValues()
428 if (mDontAllowCamera) { in toString()
486 dest.writeInt(mDontAllowCamera ? 1 : 0); in writeToParcel()
516 mDontAllowCamera = in.readInt() == 1; in Policy()
/packages/apps/Email/provider_src/com/android/email/
DSecurityPolicy.java172 aggregate.mDontAllowCamera |= policy.mDontAllowCamera; in computeAggregatePolicy()
383 if (policy.mDontAllowCamera && !dpm.getCameraDisabled(mAdminName)) { in getInactiveReasons()
445 dpm.setCameraDisabled(mAdminName, aggregatePolicy.mDontAllowCamera); in setActivePolicies()
/packages/apps/Email/tests/src/com/android/email/
DSecurityPolicyTests.java122 policy.mDontAllowCamera = dontAllowCamera; in setupPolicy()
182 assertTrue(p4out.mDontAllowCamera); in testAggregator()
207 assertTrue(p5out.mDontAllowCamera); in testAggregator()
/packages/apps/Email/tests/src/com/android/email/provider/
DPolicyTests.java203 policy.mDontAllowCamera = false; in testParcel()
/packages/apps/Email/src/com/android/email/activity/setup/
DAccountSettingsFragment.java607 if (policy.mDontAllowCamera) { in getSystemPoliciesList()