Searched refs:mNotificationChannelId (Results 1 – 10 of 10) sorted by relevance
/frameworks/base/services/people/java/com/android/server/people/data/ |
D | ConversationInfo.java | 91 private String mNotificationChannelId; field in ConversationInfo 104 mNotificationChannelId = builder.mNotificationChannelId; in ConversationInfo() 137 return mNotificationChannelId; in getNotificationChannelId() 204 && Objects.equals(mNotificationChannelId, other.mNotificationChannelId) in equals() 212 mNotificationChannelId, mShortcutFlags, mConversationFlags); in hashCode() 223 sb.append(", notificationChannelId=").append(mNotificationChannelId); in toString() 279 if (mNotificationChannelId != null) { in writeToProto() 281 mNotificationChannelId); in writeToProto() 299 out.writeUTF(mNotificationChannelId != null ? mNotificationChannelId : ""); in getBackupPayload() 409 private String mNotificationChannelId; field in ConversationInfo.Builder [all …]
|
/frameworks/base/core/java/android/app/usage/ |
D | UsageEvents.java | 476 public String mNotificationChannelId; field in UsageEvents.Event 651 return mNotificationChannelId; in getNotificationChannelId() 671 ret.mNotificationChannelId = OBFUSCATED_NOTIFICATION_CHANNEL_ID; in getObfuscatedNotificationEvent() 700 mNotificationChannelId = orig.mNotificationChannelId; in copyFrom() 898 p.writeString(event.mNotificationChannelId); in writeEventToParcel() 950 eventOut.mNotificationChannelId = null; in readEventFromParcel() 970 eventOut.mNotificationChannelId = p.readString(); in readEventFromParcel()
|
/frameworks/base/services/usage/java/com/android/server/usage/ |
D | IntervalStats.java | 218 event.mNotificationChannelId = parser.readString( in buildEvent() 222 event.mNotificationChannelId = getCachedStringRef(stringPool.get( in buildEvent() 255 if (event.mNotificationChannelId == null) { in buildEvent() 256 event.mNotificationChannelId = ""; in buildEvent() 344 event.mNotificationChannelId = getCachedStringRef(event.mNotificationChannelId); in addEvent() 566 event.mNotificationChannelId = packagesTokenData.getString(packageToken, in deobfuscateEvents() 568 if (event.mNotificationChannelId == null) { in deobfuscateEvents() 689 if (!TextUtils.isEmpty(event.mNotificationChannelId)) { in obfuscateEventsData() 691 packageToken, event.mPackage, event.mNotificationChannelId); in obfuscateEventsData()
|
D | UsageStatsProtoV2.java | 682 event.mNotificationChannelId = proto.readString( in parsePendingEvent() 708 if (event.mNotificationChannelId == null) { in parsePendingEvent() 709 event.mNotificationChannelId = ""; in parsePendingEvent() 780 if (event.mNotificationChannelId != null) { in writePendingEvent() 782 event.mNotificationChannelId); in writePendingEvent()
|
D | UsageStatsProto.java | 471 if (event.mNotificationChannelId != null) { in writeEvent() 473 event.mNotificationChannelId); in writeEvent() 480 event.mNotificationChannelId); in writeEvent()
|
D | UsageStatsXmlV1.java | 239 event.mNotificationChannelId = (channelId != null) ? channelId.intern() : null; in loadEvent()
|
D | UserUsageStatsService.java | 905 if (event.mNotificationChannelId != null) { in printEvent() 906 pw.printPair("channelId", event.mNotificationChannelId); in printEvent()
|
D | UsageStatsService.java | 2135 event.mNotificationChannelId = channelId.intern(); in reportInterruptiveNotification()
|
/frameworks/base/services/tests/servicestests/src/com/android/server/usage/ |
D | UsageStatsDatabaseTest.java | 179 event.mNotificationChannelId = "channel" + (i % 5); in populateIntervalStats() 320 assertEquals(e1.mNotificationChannelId, e2.mNotificationChannelId, in compareUsageEvent()
|
D | IntervalStatsTests.java | 97 event.mNotificationChannelId = "channel" + (i % 5); //"random" channel in populateIntervalStats()
|