Searched refs:enabledPackages (Results 1 – 1 of 1) sorted by relevance
1221 List<String> enabledPackages = getEnabledNotificationPolicyPackages(userId); in allowNotificationPolicyAccess() local1222 if (!enabledPackages.contains(packageName)) { in allowNotificationPolicyAccess()1223 enabledPackages.add(packageName); in allowNotificationPolicyAccess()1224 setEnabledNotificationPolicyPackages(enabledPackages, userId); in allowNotificationPolicyAccess()1234 List<String> enabledPackages = getEnabledNotificationPolicyPackages(userId); in disallowNotificationPolicyAccess() local1235 if (enabledPackages.contains(packageName)) { in disallowNotificationPolicyAccess()1236 enabledPackages.remove(packageName); in disallowNotificationPolicyAccess()1237 setEnabledNotificationPolicyPackages(enabledPackages, userId); in disallowNotificationPolicyAccess()