Home
last modified time | relevance | path

Searched refs:categoryType (Results 1 – 2 of 2) sorted by relevance

/aosp14/frameworks/base/core/java/android/service/notification/
H A DZenModeConfig.java1077 private boolean isPriorityCategoryEnabled(int categoryType, Policy policy) { in isPriorityCategoryEnabled() argument
1078 return (policy.priorityCategories & categoryType) != 0; in isPriorityCategoryEnabled()
/aosp14/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationManagerService.java3055 int correctCategory(int requestedCategoryList, int categoryType,
3057 if ((requestedCategoryList & categoryType) != 0
3058 && (currentCategoryList & categoryType) == 0) {
3059 requestedCategoryList &= ~categoryType;
3060 } else if ((requestedCategoryList & categoryType) == 0
3061 && (currentCategoryList & categoryType) != 0){
3062 requestedCategoryList |= categoryType;