Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coalescer/
DGroupCoalescer.java186 mLogger.logEarlyEmit(sbn.getKey(), requireNonNull(event.getBatch()).mGroupKey); in maybeEmitBatch()
190 mLogger.logMaxBatchTimeout(sbn.getKey(), batch.mGroupKey); in maybeEmitBatch()
251 if (batch != mBatches.get(batch.mGroupKey)) { in emitBatch()
252 throw new IllegalStateException("Cannot emit out-of-date batch " + batch.mGroupKey); in emitBatch()
255 throw new IllegalStateException("Batch " + batch.mGroupKey + " cannot be empty"); in emitBatch()
262 mBatches.remove(batch.mGroupKey); in emitBatch()
272 mLogger.logEmitBatch(batch.mGroupKey, batch.mMembers.size(), batchAge); in emitBatch()
308 pw.println(" Batch " + batch.mGroupKey + ":"); in dump()
DEventBatch.java32 final String mGroupKey; field in EventBatch
44 this.mGroupKey = groupKey; in EventBatch()
/frameworks/base/services/core/java/com/android/server/notification/
DNotificationRecordExtractorData.java36 private final String mGroupKey; field in NotificationRecordExtractorData
64 mGroupKey = groupKey; in NotificationRecordExtractorData()
87 || !Objects.equals(mGroupKey, r.getGroupKey()) in hasDiffForRankingLocked()
110 || !Objects.equals(mGroupKey, r.getGroupKey()) in hasDiffForLoggingLocked()
/frameworks/base/packages/SettingsLib/Tile/src/com/android/settingslib/drawer/
DTile.java75 private String mGroupKey; field in Tile
84 mGroupKey = metaData.getString(META_DATA_PREFERENCE_GROUP_KEY); in Tile()
105 mGroupKey = in.readString(); in Tile()
125 dest.writeString(mGroupKey); in writeToParcel()
385 return !TextUtils.isEmpty(mGroupKey); in hasGroupKey()
390 mGroupKey = groupKey; in setGroupKey()
395 return mGroupKey; in getGroupKey()
/frameworks/base/services/tests/vibrator/src/com/android/server/vibrator/
DGroupedAggregatedLogRecordsTest.java229 private final int mGroupKey; field in GroupedAggregatedLogRecordsTest.TestSingleLogRecord
234 mGroupKey = groupKey; in TestSingleLogRecord()
241 return mGroupKey; in getGroupKey()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
DBubble.java76 private final String mGroupKey; field in Bubble
212 mGroupKey = null; in Bubble()
236 mGroupKey = null; in Bubble()
283 mGroupKey = entry.getGroupKey(); in Bubble()
327 return mGroupKey; in getGroupKey()
/frameworks/base/core/java/android/app/
DNotification.java1100 private String mGroupKey; field in Notification
1107 return mGroupKey; in getGroup()
2743 mGroupKey = parcel.readString8(); in readFromParcelImpl()
2858 that.mGroupKey = this.mGroupKey; in cloneInto()
3439 parcel.writeString8(mGroupKey); in writeToParcelImpl()
3783 proto.write(NotificationProto.GROUP_KEY, this.mGroupKey); in dumpDebug()
3849 if (this.mGroupKey != null) { in toString()
3851 sb.append(this.mGroupKey); in toString()
4241 return mGroupKey != null && (flags & FLAG_GROUP_SUMMARY) != 0; in isGroupSummary()
4249 return mGroupKey != null && (flags & FLAG_GROUP_SUMMARY) == 0; in isGroupChild()
[all …]