Home
last modified time | relevance | path

Searched refs:isBlockableSystem (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
DNotificationChannelTest.java56 assertEquals(false, channel.isBlockableSystem()); in testSystemBlockable()
58 assertEquals(true, channel.isBlockableSystem()); in testSystemBlockable()
/frameworks/base/core/java/android/app/
DNotificationChannel.java597 public boolean isBlockableSystem() { in isBlockableSystem() method in NotificationChannel
758 if (isBlockableSystem()) { in writeXml()
759 out.attribute(null, ATT_BLOCKABLE_SYSTEM, Boolean.toString(isBlockableSystem())); in writeXml()
802 record.put(ATT_BLOCKABLE_SYSTEM, isBlockableSystem()); in toJson()
902 if (isBlockableSystem() != that.isBlockableSystem()) return false; in equals()
941 result = 31 * result + (isBlockableSystem() ? 1 : 0); in hashCode()
/frameworks/base/services/core/java/com/android/server/notification/
DRankingHelper.java631 existing.setBlockableSystem(channel.isBlockableSystem()); in createNotificationChannel()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DExpandableNotificationRow.java456 && !mEntry.channel.isBlockableSystem()) { in getIsNonblockable()