Searched refs:mEnforcingAdmins (Results 1 – 1 of 1) sorted by relevance
132 private final SparseArray<Set<EnforcingAdmin>> mEnforcingAdmins; field in DevicePolicyEngine150 mEnforcingAdmins = new SparseArray<>(); in DevicePolicyEngine()1518 if (mEnforcingAdmins.contains(userId) in updateDeviceAdminServiceOnPolicyAddLocked()1519 && mEnforcingAdmins.get(userId).contains(enforcingAdmin)) { in updateDeviceAdminServiceOnPolicyAddLocked()1523 if (!mEnforcingAdmins.contains(enforcingAdmin.getUserId())) { in updateDeviceAdminServiceOnPolicyAddLocked()1524 mEnforcingAdmins.put(enforcingAdmin.getUserId(), new HashSet<>()); in updateDeviceAdminServiceOnPolicyAddLocked()1526 mEnforcingAdmins.get(enforcingAdmin.getUserId()).add(enforcingAdmin); in updateDeviceAdminServiceOnPolicyAddLocked()1549 if (mEnforcingAdmins.contains(userId)) { in updateDeviceAdminServiceOnPolicyRemoveLocked()1550 mEnforcingAdmins.get(userId).remove(enforcingAdmin); in updateDeviceAdminServiceOnPolicyRemoveLocked()1551 if (mEnforcingAdmins.get(userId).isEmpty()) { in updateDeviceAdminServiceOnPolicyRemoveLocked()[all …]