Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/app/
DNotificationChannel.java139 private boolean mBypassDnd; field in NotificationChannel
195 mBypassDnd = in.readByte() != 0; in NotificationChannel()
240 dest.writeByte(mBypassDnd ? (byte) 1 : (byte) 0); in writeToParcel()
446 this.mBypassDnd = bypassDnd; in setBypassDnd()
497 return mBypassDnd; in canBypassDnd()
894 if (mBypassDnd != that.mBypassDnd) return false; in equals()
929 result = 31 * result + (mBypassDnd ? 1 : 0); in hashCode()
952 + ", mBypassDnd=" + mBypassDnd in toString()
977 proto.write(NotificationChannelProto.CAN_BYPASS_DND, mBypassDnd); in writeToProto()