Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coalescer/
DGroupCoalescer.java167 mLogger.logEarlyEmit(sbn.getKey(), requireNonNull(event.getBatch()).mGroupKey); in maybeEmitBatch()
171 mLogger.logMaxBatchTimeout(sbn.getKey(), batch.mGroupKey); in maybeEmitBatch()
232 if (batch != mBatches.get(batch.mGroupKey)) { in emitBatch()
233 throw new IllegalStateException("Cannot emit out-of-date batch " + batch.mGroupKey); in emitBatch()
236 throw new IllegalStateException("Batch " + batch.mGroupKey + " cannot be empty"); in emitBatch()
243 mBatches.remove(batch.mGroupKey); in emitBatch()
252 mLogger.logEmitBatch(batch.mGroupKey); in emitBatch()
288 pw.println(" Batch " + batch.mGroupKey + ":"); in dump()
DEventBatch.java32 final String mGroupKey; field in EventBatch
44 this.mGroupKey = groupKey; in EventBatch()
/frameworks/base/core/java/android/app/
DNotification.java907 private String mGroupKey; field in Notification
914 return mGroupKey; in getGroup()
2306 mGroupKey = parcel.readString8(); in readFromParcelImpl()
2419 that.mGroupKey = this.mGroupKey; in cloneInto()
2771 parcel.writeString8(mGroupKey); in writeToParcelImpl()
3055 proto.write(NotificationProto.GROUP_KEY, this.mGroupKey); in dumpDebug()
3121 if (this.mGroupKey != null) { in toString()
3123 sb.append(this.mGroupKey); in toString()
3332 return mGroupKey != null && (flags & FLAG_GROUP_SUMMARY) != 0; in isGroupSummary()
3340 return mGroupKey != null && (flags & FLAG_GROUP_SUMMARY) == 0; in isGroupChild()
[all …]