/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/interruption/ |
D | NotificationInterruptLogger.kt | 27 import com.android.systemui.statusbar.notification.logKey 52 str1 = entry.logKey in logNoBubbleNotAllowed() 61 str1 = entry.logKey in logNoAlertingAppSuspended() 69 str1 = entry.logKey in logNoBubbleNoMetadata() 84 str1 = entry.logKey in logNoHeadsUpPackageSnoozed() 92 str1 = entry.logKey in logHeadsUpPackageSnoozeBypassedHasFsi() 100 str1 = entry.logKey in logNoHeadsUpAlreadyBubbled() 108 str1 = entry.logKey in logNoHeadsUpSuppressedByDnd() 116 str1 = entry.logKey in logNoHeadsUpNotImportant() 124 str1 = entry.logKey in logNoHeadsUpNotInUse() [all …]
|
D | HeadsUpViewBinderLogger.kt | 7 import com.android.systemui.statusbar.notification.logKey 13 str1 = entry.logKey in startBindingHun() 21 str1 = entry.logKey in currentOngoingBindingAborted() 29 str1 = entry.logKey in entryBoundSuccessfully() 37 str1 = entry.logKey in entryUnbound() 45 str1 = entry.logKey in entryContentViewMarkedFreeable() 53 str1 = entry.logKey in entryBindStageParamsNullOnUnbind()
|
D | VisualInterruptionDecisionLogger.kt | 26 import com.android.systemui.statusbar.notification.logKey 57 str3 = entry.logKey in logDecision() 78 str2 = entry.logKey in logFullScreenIntentDecision()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
D | NotificationRowLogger.kt | 26 import com.android.systemui.statusbar.notification.logKey 40 str1 = child.logKey in logKeepInParentChildDetached() 41 str2 = oldParent.logKey in logKeepInParentChildDetached() 52 str1 = child.logKey in logSkipAttachingKeepInParentChild() 53 str2 = newParent.logKey in logSkipAttachingKeepInParentChild() 67 str1 = childEntry.logKey in logRemoveTransientFromContainer() 68 str2 = containerEntry.logKey in logRemoveTransientFromContainer() 80 { str1 = childEntry.logKey }, in logRemoveTransientFromNssl() 93 str1 = childEntry.logKey in logRemoveTransientFromViewGroup() 109 str1 = childEntry.logKey in logAddTransientRow() [all …]
|
D | NotifBindPipelineLogger.kt | 23 import com.android.systemui.statusbar.notification.logKey 39 str1 = entry.logKey in logManagedRow() 47 str1 = entry.logKey in logRequestPipelineRun() 55 str1 = entry.logKey in logRequestPipelineRowNotSet() 63 str1 = entry.logKey in logStartPipeline() 71 str1 = entry.logKey in logFinishedPipeline()
|
D | NotificationRowContentBinderLogger.kt | 23 import com.android.systemui.statusbar.notification.logKey 42 { str1 = entry.logKey }, in logNotBindingRowWasRemoved() 52 str1 = entry.logKey in logBinding() 63 { str1 = entry.logKey }, in logCancelBindAbortedTask() 73 str1 = entry.logKey in logUnbinding() 85 str1 = entry.logKey in logAsyncTaskProgress() 97 str1 = entry.logKey in logAsyncTaskException() 114 str1 = entry.logKey in logInflateSingleLine()
|
D | RowInflaterTaskLogger.kt | 23 import com.android.systemui.statusbar.notification.logKey 31 { str1 = entry.logKey }, in logInflateStart() 41 str1 = entry.logKey in logCreatedRow() 53 str1 = entry.logKey in logInflateFinish()
|
D | RowContentBindStageLogger.kt | 23 import com.android.systemui.statusbar.notification.logKey 31 str1 = entry.logKey in logExecutingStage() 40 str1 = entry.logKey in logAbortStageCancelledBind()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/notifcollection/ |
D | NotifCollectionLogger.kt | 34 import com.android.systemui.statusbar.notification.logKey 71 str1 = entry.logKey in logNotifPosted() 79 str1 = logKey(groupKey) in logNotifGroupPosted() 88 str1 = entry.logKey in logNotifUpdated() 96 str1 = sbn.logKey in logNotifRemoved() 105 str1 = entry.logKey in logNotifReleased() 113 str1 = entry.logKey in logLocallyDismissed() 123 str1 = entry.logKey in logDismissNonExistentNotif() 138 str1 = child.logKey in logLocallyDismissedChild() 139 str2 = parent.logKey in logLocallyDismissedChild() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
D | HeadsUpManagerLogger.kt | 24 import com.android.systemui.statusbar.notification.logKey 63 str1 = entry.logKey in logShowNotificationRequest() 71 str1 = entry.logKey in logShowNotification() 79 str1 = entry.logKey in logAutoRemoveScheduled() 89 str1 = entry.logKey in logAutoRemoveRequest() 98 str1 = entry.logKey in logAutoRemoveRescheduled() 108 str1 = entry.logKey in logAutoRemoveCancelRequest() 117 str1 = entry.logKey in logAutoRemoveCanceled() 126 str1 = logKey(key) in logRemoveEntryRequest() 136 str1 = logKey(key) in logRemoveEntry() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | StatusBarNotificationActivityStarterLogger.kt | 27 import com.android.systemui.statusbar.notification.logKey 36 str1 = entry.logKey in logStartingActivityFromClick() 48 str1 = entry.logKey in logHandleClickAfterKeyguardDismissed() 56 str1 = entry.logKey in logHandleClickAfterPanelCollapsed() 64 str1 = entry.logKey in logStartNotificationIntent() 72 str1 = entry.logKey in logSendPendingIntent() 82 str1 = entry.logKey in logCloseRemoteInput() 90 str1 = entry.logKey in logExpandingBubble() 106 str1 = entry.logKey in logNonClickableNotification() 114 str1 = entry.logKey in logFullScreenIntentSuppressedByVR() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
D | NotificationUtils.kt | 23 val ListEntry?.logKey: String? constant 24 get() = this?.let { NotificationUtils.logKey(it) } in <lambda>() 27 val StatusBarNotification?.logKey: String? constant 28 get() = this?.key?.let { NotificationUtils.logKey(it) } in <lambda>() 31 fun logKey(key: String?): String? = NotificationUtils.logKey(key) method
|
D | NotificationClickerLogger.kt | 30 str1 = entry.logKey in logOnClick() 39 str1 = entry.logKey in logMenuVisible() 47 str1 = entry.logKey in logParentMenuVisible() 55 str1 = entry.logKey in logChildrenExpanded() 63 str1 = entry.logKey in logGutsExposed()
|
D | NotificationUtils.java | 82 public static String logKey(ListEntry entry) { in logKey() method in NotificationUtils 87 return logKey(entry.getKey()) + "@" + Integer.toHexString(entry.hashCode()); in logKey() 89 return logKey(entry.getKey()); in logKey() 94 public static String logKey(ExpandableNotificationRow row) { in logKey() method in NotificationUtils 95 return row == null ? "null" : logKey(row.getEntry()); in logKey() 99 public static String logKey(String key) { in logKey() method in NotificationUtils
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/ |
D | PreparationCoordinatorLogger.kt | 24 import com.android.systemui.statusbar.notification.logKey 32 str1 = entry.logKey in logNotifInflated() 40 str1 = entry.logKey in logInflationAborted() 49 str1 = entry.logKey in logFreeNotifViews() 58 str1 = group.logKey in logDoneWaitingForGroupInflation() 66 str1 = group.logKey in logGroupInflationTookTooLong() 74 str1 = group.logKey in logDelayingGroupRelease() 75 str2 = child.logKey in logDelayingGroupRelease()
|
D | PreparationCoordinator.java | 19 import static com.android.systemui.statusbar.notification.NotificationUtils.logKey; 253 mNotifInflationErrorFilter.invalidateList("onNotifInflationError for " + logKey(entry)); 259 "onNotifInflationErrorCleared for " + logKey(entry)); 395 mNotifInflatingFilter.invalidateList("onInflationFinished for " + logKey(entry));
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/ |
D | NotifInflaterLogger.kt | 24 import com.android.systemui.statusbar.notification.logKey 33 str1 = entry.logKey in logInflatingViews() 41 buffer.log(TAG, LogLevel.DEBUG, { str1 = entry.logKey }, { "inflated views for $str1" }) in logInflatedViews() 49 str1 = entry.logKey in logRebindingViews() 57 buffer.log(TAG, LogLevel.DEBUG, { str1 = entry.logKey }, { "rebound views for $str1" }) in logReboundViews() 65 str1 = entry.logKey in logInflationException() 76 { str1 = entry.logKey }, in logAbortInflationAbortedTask() 82 buffer.log(TAG, LogLevel.DEBUG, { str1 = entry.logKey }, { "aborting inflation for $str1" }) in logReleasingViews()
|
D | ListDumper.java | 19 import static com.android.systemui.statusbar.notification.NotificationUtils.logKey; 56 interactionTracker.hasUserInteractedWith(logKey(entry))); in dumpTree() 67 interactionTracker.hasUserInteractedWith(logKey(summary))); in dumpTree() 78 interactionTracker.hasUserInteractedWith(logKey(child))); in dumpTree() 120 .append(logKey(entry)); in dumpEntry() 124 .append(logKey(entry.getParent())) in dumpEntry() 189 .append(logKey(notifEntry.getAttachState().getSuppressedChanges() in dumpEntry()
|
D | NotifCollection.java | 42 import static com.android.systemui.statusbar.notification.NotificationUtils.logKey; 295 + "different stored and dismissed entries for " + logKey(entry) in dismissNotifications() 551 Log.wtf(TAG, "TRY REMOVE non-existent notification " + logKey(entry)); in tryRemoveNotification() 556 + " for key " + logKey(entry) + ":" in tryRemoveNotification() 563 new IllegalStateException("Cannot remove notification " + logKey(entry) in tryRemoveNotification() 710 String logKey = logKey(entry); in onEndLifetimeExtension() local 723 extender.getName(), logKey, collectionEntryIs))); in onEndLifetimeExtension() 1089 + " entry=" + logKey(mEntry) in FutureDismissal() 1091 + " summary=" + logKey(mSummaryToDismiss) in FutureDismissal()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
D | StackStateLogger.kt | 7 import com.android.systemui.statusbar.notification.logKey 22 { str1 = logKey(key) }, in logHUNViewAppearing() 31 { str1 = logKey(key) }, in logHUNViewAppearingWithAddEvent() 40 { str1 = logKey(key) }, in appearAnimationEnded() 50 str1 = logKey(key) in processAnimationEventsRemoval() 70 str1 = logKey(key) in processAnimationEventsRemoveSwipeOut() 86 str1 = logKey(key) in animationStart() 99 str1 = logKey(key) in animationEnd()
|
D | NotificationStackScrollLogger.kt | 12 import com.android.systemui.statusbar.notification.logKey 28 str1 = entry.logKey in hunAnimationSkipped() 50 str1 = entry.logKey in hunAnimationEventAdded() 59 str1 = entry.logKey in hunSkippedForUnexpectedState() 89 str1 = entry.logKey in transientNotificationRowTraversalCleaned() 101 str1 = childEntry.logKey in addTransientChildNotificationToChildContainer() 102 str2 = containerEntry.logKey in addTransientChildNotificationToChildContainer() 113 str1 = childEntry.logKey in addTransientChildNotificationToNssl() 124 str1 = childEntry.logKey in addTransientChildNotificationToViewGroup() 140 str1 = childEntry.logKey in addTransientRow() [all …]
|
D | NotificationChildrenContainerLogger.kt | 23 import com.android.systemui.statusbar.notification.logKey 38 str1 = childEntry.logKey in addTransientRow() 39 str2 = containerEntry.logKey in addTransientRow() 54 str1 = childEntry.logKey in removeTransientRow() 55 str2 = containerEntry.logKey in removeTransientRow()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/inflation/ |
D | NotificationRowBinderLogger.kt | 24 import com.android.systemui.statusbar.notification.logKey 35 str1 = entry.logKey in logCreatingRow() 43 buffer.log(TAG, LogLevel.DEBUG, { str1 = entry.logKey }, { "inflating row for $str1" }) in logInflatingRow() 47 buffer.log(TAG, LogLevel.DEBUG, { str1 = entry.logKey }, { "inflated row for $str1" }) in logInflatedRow() 55 str1 = entry.logKey in logUpdatingRow() 63 buffer.log(TAG, LogLevel.DEBUG, { str1 = entry.logKey }, { "releasing views for $str1" }) in logReleasingViews() 70 { str1 = entry.logKey }, in logNotReleasingViewsRowDoesntExist()
|
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/core/instrumentation/ |
D | MetricsFeatureProvider.java | 220 public boolean logSettingsTileClick(String logKey, int sourceMetricsCategory) { in logSettingsTileClick() argument 221 if (TextUtils.isEmpty(logKey)) { in logSettingsTileClick() 225 clicked(sourceMetricsCategory, logKey); in logSettingsTileClick() 235 public boolean logSettingsTileClickWithProfile(String logKey, int sourceMetricsCategory, in logSettingsTileClickWithProfile() argument 237 if (TextUtils.isEmpty(logKey)) { in logSettingsTileClickWithProfile() 241 clicked(sourceMetricsCategory, logKey + (isWorkProfile ? "/work" : "/personal")); in logSettingsTileClickWithProfile()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/listbuilder/ |
D | ShadeListBuilderLogger.kt | 37 import com.android.systemui.statusbar.notification.logKey 136 str1 = group.logKey 137 str2 = existingSummary.logKey 138 str3 = newSummary.logKey
|