/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/ |
D | NotificationChannelLoggerFake.java | 26 static class CallRecord { class in NotificationChannelLoggerFake 28 CallRecord(NotificationChannelEvent event) { in CallRecord() method in NotificationChannelLoggerFake.CallRecord 33 private List<CallRecord> mCalls = new ArrayList<>(); 35 List<CallRecord> getCalls() { in getCalls() 39 CallRecord get(int index) { in get() 46 mCalls.add(new CallRecord(event)); in logNotificationChannel() 52 mCalls.add(new CallRecord(event)); in logNotificationChannelGroup() 57 mCalls.add(new CallRecord(event)); in logAppEvent()
|
D | NotificationRecordLoggerFake.java | 29 static class CallRecord extends NotificationRecordPair { class in NotificationRecordLoggerFake 38 CallRecord(NotificationRecord r, NotificationRecord old, int position, in CallRecord() method in NotificationRecordLoggerFake.CallRecord 48 CallRecord(NotificationRecord r, UiEventLogger.UiEventEnum event) { in CallRecord() method in NotificationRecordLoggerFake.CallRecord 54 private List<CallRecord> mCalls = new ArrayList<>(); 60 List<CallRecord> getCalls() { in getCalls() 64 CallRecord get(int index) { in get() 74 mCalls.add(new CallRecord(r, old, position, buzzBeepBlink, groupId)); in maybeLogNotificationPosted() 79 mCalls.add(new CallRecord(r, event)); in log() 84 mCalls.add(new CallRecord(null, event)); in log()
|
D | NotificationManagerServiceTest.java | 601 for (NotificationRecordLoggerFake.CallRecord call : mNotificationRecordLogger.getCalls()) { in assertNotificationRecordLoggerCallsValid() 1369 NotificationRecordLoggerFake.CallRecord call = mNotificationRecordLogger.get(0); in testEnqueueNotificationWithTag_WritesExpectedLogs()
|
/frameworks/base/core/tests/coretests/src/com/android/internal/app/ |
D | ChooserActivityLoggerFake.java | 27 static class CallRecord { class in ChooserActivityLoggerFake 48 CallRecord(int atomId, UiEventLogger.UiEventEnum eventId, in CallRecord() method in ChooserActivityLoggerFake.CallRecord 56 CallRecord(int atomId, String packageName, InstanceId instanceId, String mimeType, in CallRecord() method in ChooserActivityLoggerFake.CallRecord 70 CallRecord(int atomId, String packageName, InstanceId instanceId, int targetType, in CallRecord() method in ChooserActivityLoggerFake.CallRecord 80 private List<CallRecord> mCalls = new ArrayList<>(); 86 List<CallRecord> getCalls() { in getCalls() 90 CallRecord get(int index) { in get() 102 mCalls.add(new CallRecord(FrameworkStatsLog.SHARESHEET_STARTED, packageName, in logShareStarted() 109 mCalls.add(new CallRecord(FrameworkStatsLog.RANKING_SELECTED, packageName, getInstanceId(), in logShareTargetSelected() 115 mCalls.add(new CallRecord(FrameworkStatsLog.UI_EVENT_REPORTED, in log()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/logging/ |
D | NotificationPanelLoggerFake.java | 26 private List<CallRecord> mCalls = new ArrayList<>(); 28 List<CallRecord> getCalls() { in getCalls() 32 CallRecord get(int index) { in get() 39 mCalls.add(new CallRecord(isLockscreen, in logPanelShown() 43 public static class CallRecord { class in NotificationPanelLoggerFake 46 CallRecord(boolean isLockscreen, Notifications.NotificationList list) { in CallRecord() method in NotificationPanelLoggerFake.CallRecord
|