Searched refs:policyData (Results 1 – 3 of 3) sorted by relevance
180 static boolean store(DevicePolicyData policyData, JournaledFile file, boolean isFdeDevice) { in store() argument186 Slogf.v(TAG, "Storing data for user %d on %s ", policyData.mUserId, chooseForWrite); in store()193 if (policyData.mRestrictionsProvider != null) { in store()195 policyData.mRestrictionsProvider.flattenToString()); in store()197 if (policyData.mUserSetupComplete) { in store()201 if (policyData.mPaired) { in store()204 if (policyData.mDeviceProvisioningConfigApplied) { in store()207 if (policyData.mUserProvisioningState != DevicePolicyManager.STATE_USER_UNMANAGED) { in store()208 out.attributeInt(null, ATTR_PROVISIONING_STATE, policyData.mUserProvisioningState); in store()210 if (policyData.mPermissionPolicy != DevicePolicyManager.PERMISSION_POLICY_PROMPT) { in store()[all …]
3588 DevicePolicyData policyData = getUserData(userHandle);3589 return policyData.mRemovingAdmins.contains(adminReceiver);5167 DevicePolicyData policyData = getUserData(UserHandle.USER_SYSTEM);5168 if (!policyData.mDoNotAskCredentialsOnBoot) {5169 policyData.mDoNotAskCredentialsOnBoot = true;5180 DevicePolicyData policyData = getUserData(UserHandle.USER_SYSTEM);5181 return policyData.mDoNotAskCredentialsOnBoot;7983 DevicePolicyData policyData = getUserData(UserHandle.USER_SYSTEM);7984 if (currentTime > policyData.mLastBugReportRequestTime) {7985 policyData.mLastBugReportRequestTime = currentTime;[all …]
1129 byte[] policyData = new byte[byteLength]; in restoreNetworkPolicies()1130 in.read(policyData, 0, byteLength); in restoreNetworkPolicies()1132 new DataInputStream(new ByteArrayInputStream(policyData))); in restoreNetworkPolicies()