Home
last modified time | relevance | path

Searched refs:notif (Results 1 – 25 of 34) sorted by relevance

12

/frameworks/av/media/libaudioclient/tests/
Dtrack_test_output_v1.0_ref_walleye.txt9 notif. frame count(2400), req. notif. frame count(2400), req. notif. per buff(0)
20 notif. frame count(1600), req. notif. frame count(2400), req. notif. per buff(0)
31 notif. frame count(1600), req. notif. frame count(2400), req. notif. per buff(0)
42 notif. frame count(1600), req. notif. frame count(2400), req. notif. per buff(0)
53 notif. frame count(1470), req. notif. frame count(2205), req. notif. per buff(0)
64 notif. frame count(1470), req. notif. frame count(2205), req. notif. per buff(0)
75 notif. frame count(1470), req. notif. frame count(2205), req. notif. per buff(0)
86 notif. frame count(2400), req. notif. frame count(2400), req. notif. per buff(0)
97 notif. frame count(2400), req. notif. frame count(2400), req. notif. per buff(0)
108 notif. frame count(2400), req. notif. frame count(2400), req. notif. per buff(0)
[all …]
Drecord_test_output_v1.0_ref_walleye.txt8 notif. frame count(960), req. notif. frame count(2400)
17 notif. frame count(480), req. notif. frame count(2400)
26 notif. frame count(320), req. notif. frame count(2400)
35 notif. frame count(160), req. notif. frame count(2400)
44 notif. frame count(896), req. notif. frame count(2205)
53 notif. frame count(448), req. notif. frame count(2205)
62 notif. frame count(224), req. notif. frame count(2205)
71 notif. frame count(960), req. notif. frame count(2400)
80 notif. frame count(960), req. notif. frame count(2400)
89 notif. frame count(960), req. notif. frame count(2400)
[all …]
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/render/
DNodeSpecBuilderTest.kt88 notif(0, section0), in testMultipleSectionsWithSameController()
89 notif(1, section2), in testMultipleSectionsWithSameController()
90 notif(2, section3) in testMultipleSectionsWithSameController()
107 notif(0, section0), in testMultipleSectionsWithSameControllerNonConsecutive()
108 notif(1, section1), in testMultipleSectionsWithSameControllerNonConsecutive()
109 notif(2, section3), in testMultipleSectionsWithSameControllerNonConsecutive()
110 notif(3, section1) in testMultipleSectionsWithSameControllerNonConsecutive()
122 notif(0, section0NoHeader), in testSimpleMapping()
123 notif(1, section0NoHeader), in testSimpleMapping()
124 notif(2, section0NoHeader), in testSimpleMapping()
[all …]
DRenderStageManagerTest.kt197 notif(1), in listWith2Groups8Entries()
198 notif(2), in listWith2Groups8Entries()
199 notif(3) in listWith2Groups8Entries()
201 notif(4), in listWith2Groups8Entries()
203 notif(5), in listWith2Groups8Entries()
204 notif(6), in listWith2Groups8Entries()
205 notif(7) in listWith2Groups8Entries()
207 notif(8) in listWith2Groups8Entries()
218 private fun notif(id: Int): NotificationEntry = NotificationEntryBuilder().setId(id).build() method in com.android.systemui.statusbar.notification.collection.render.RenderStageManagerTest
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/
DShadeListBuilderTest.java175 notif(6), in testNotifsAreSortedByRankAndWhen()
176 notif(5), in testNotifsAreSortedByRankAndWhen()
177 notif(0), in testNotifsAreSortedByRankAndWhen()
178 notif(3), in testNotifsAreSortedByRankAndWhen()
179 notif(2), in testNotifsAreSortedByRankAndWhen()
180 notif(1), in testNotifsAreSortedByRankAndWhen()
181 notif(4) in testNotifsAreSortedByRankAndWhen()
287 notif(0), in testDuplicateGroupSummariesAreDiscarded()
294 notif(5) in testDuplicateGroupSummariesAreDiscarded()
316 notif(0), in testGroupsWithNoSummaryAreUngrouped()
[all …]
DNotifCollectionTest.java248 NotifEvent notif = mNoMan.postNotif(buildNotif(TEST_PACKAGE2, 88, "barTag")); in testCancelNonExistingNotification() local
249 NotificationEntry entry = mCollectionListener.getEntry(notif.key); in testCancelNonExistingNotification()
336 NotifEvent notif = mNoMan.postNotif(buildNotif(TEST_PACKAGE, 47)); in testEventDispatchedWhenNotifRemoved() local
337 NotificationEntry entry = mCollectionListener.getEntry(notif.key); in testEventDispatchedWhenNotifRemoved()
341 mNoMan.retractNotif(notif.sbn, REASON_APP_CANCEL); in testEventDispatchedWhenNotifRemoved()
348 assertEquals(notif.sbn, entry.getSbn()); in testEventDispatchedWhenNotifRemoved()
349 assertEquals(notif.ranking, entry.getRanking()); in testEventDispatchedWhenNotifRemoved()
362 NotifEvent notif = mNoMan.postNotif(neb); in testEventDispatchedWhenChannelChanged() local
363 NotificationEntry entry = mCollectionListener.getEntry(notif.key); in testEventDispatchedWhenChannelChanged()
393 final NotifEvent notif = mNoMan.postNotif(neb); in testScheduleBuildNotificationListWhenChannelChanged() local
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/data/repository/
DActiveNotificationListRepository.kt101 fun addIndividualNotif(notif: ActiveNotificationModel) { in addIndividualNotif()
102 renderList.add(Key.Individual(notif.key)) in addIndividualNotif()
103 individuals[notif.key] = notif in addIndividualNotif()
/frameworks/base/services/core/java/com/android/server/notification/
DBadgeExtractor.java71 final Notification notif = record.getNotification(); in process() local
72 if (notif.isMediaNotification()) { in process()
Dflags.aconfig118 description: "aborts cancel binder events early if notif doesn't exist"
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/policy/
DHeadsUpManagerTestUtil.java77 final Notification notif = new Notification.Builder(context, "") in createFullScreenIntentEntry() local
81 return HeadsUpManagerTestUtil.createEntry(id, notif); in createFullScreenIntentEntry()
DBaseHeadsUpManagerTest.java114 final Notification notif = new Notification.Builder(mContext, "") in createStickyEntry() local
118 return HeadsUpManagerTestUtil.createEntry(id, notif); in createStickyEntry()
122 final Notification notif = new Notification.Builder(mContext, "") in createStickyForSomeTimeEntry() local
126 return HeadsUpManagerTestUtil.createEntry(id, notif); in createStickyForSomeTimeEntry()
/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
DStorageNotification.java334 final Notification notif; in onPublicVolumeStateChangedInternal() local
337 notif = onVolumeUnmounted(vol); in onPublicVolumeStateChangedInternal()
340 notif = onVolumeChecking(vol); in onPublicVolumeStateChangedInternal()
344 notif = onVolumeMounted(vol); in onPublicVolumeStateChangedInternal()
347 notif = onVolumeFormatting(vol); in onPublicVolumeStateChangedInternal()
350 notif = onVolumeEjecting(vol); in onPublicVolumeStateChangedInternal()
353 notif = onVolumeUnmountable(vol); in onPublicVolumeStateChangedInternal()
356 notif = onVolumeRemoved(vol); in onPublicVolumeStateChangedInternal()
359 notif = onVolumeBadRemoval(vol); in onPublicVolumeStateChangedInternal()
362 notif = null; in onPublicVolumeStateChangedInternal()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationSectionsManager.kt138 fun addNotif(notif: ExpandableView): SectionBounds = in <lambda>()
140 is None -> One(notif) in <lambda>()
141 is One -> Many(lone, notif) in <lambda>()
142 is Many -> copy(last = notif) in <lambda>()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
DBubbleController.java1373 public void updateBubble(BubbleEntry notif) { in updateBubble() argument
1374 int bubbleUserId = notif.getStatusBarNotification().getUserId(); in updateBubble()
1376 updateBubble(notif, false /* suppressFlyout */, true /* showInShade */); in updateBubble()
1379 mSavedUserBubbleData.get(bubbleUserId, new UserBubbleData()).add(notif.getKey(), in updateBubble()
1609 public void updateBubble(BubbleEntry notif, boolean suppressFlyout, boolean showInShade) { in updateBubble() argument
1611 mSysuiProxy.setNotificationInterruption(notif.getKey()); in updateBubble()
1612 boolean isNonInterruptiveNotExpanding = !notif.getRanking().isTextChanged() in updateBubble()
1613 && (notif.getBubbleMetadata() != null in updateBubble()
1614 && !notif.getBubbleMetadata().getAutoExpandBubble()); in updateBubble()
1616 && mBubbleData.hasOverflowBubbleWithKey(notif.getKey())) { in updateBubble()
[all …]
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DNotificationGroupTestHelper.java90 Notification notif = new Notification.Builder(mContext, TEST_CHANNEL_ID) in createEntry() local
101 .setNotification(notif) in createEntry()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/ui/viewmodel/
DNotificationLoggerViewModelTest.kt92 requireNotNull(notifs).forEachIndexed { i, notif -> in <lambda>() method
93 assertThat(notif.key).isEqualTo("$i") in <lambda>()
/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
DNotificationManagerServiceTest.java2034 final Notification notif = generateNotificationRecord(null).getNotification(); in testEnqueueNotificationWithTag_DoesNotLogOnTitleUpdate() local
2035 notif.extras.putString(Notification.EXTRA_TITLE, "Changed title"); in testEnqueueNotificationWithTag_DoesNotLogOnTitleUpdate()
2036 mBinderService.enqueueNotificationWithTag(mPkg, mPkg, tag, 0, notif, mUserId); in testEnqueueNotificationWithTag_DoesNotLogOnTitleUpdate()
2256 Notification notif = new Notification.Builder(mContext, mTestNotificationChannel.getId()) in enqueueNotification_notPosted_acquiresAndReleasesWakeLock() local
2262 notif, mUserId); in enqueueNotification_notPosted_acquiresAndReleasesWakeLock()
2620 final NotificationRecord notif = generateNotificationRecord( in testCancelAllNotifications_CancelsNoClearFlag() local
2622 notif.getNotification().flags |= Notification.FLAG_NO_CLEAR; in testCancelAllNotifications_CancelsNoClearFlag()
2623 mService.addNotification(notif); in testCancelAllNotifications_CancelsNoClearFlag()
2625 notif.getUserId(), REASON_CANCEL); in testCancelAllNotifications_CancelsNoClearFlag()
2628 mBinderService.getActiveNotifications(notif.getSbn().getPackageName()); in testCancelAllNotifications_CancelsNoClearFlag()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationMediaManager.java328 Notification notif = entry.getSbn().getNotification(); in findPlayingMediaNotification() local
329 if (notif.isMediaNotification()) { in findPlayingMediaNotification()
367 Notification notif = sbn.getNotification(); in findPlayingMediaNotification() local
368 if (notif.isMediaNotification()) { in findPlayingMediaNotification()
/frameworks/base/services/core/java/com/android/server/am/
DPreBootBroadcaster.java169 final Notification notif =
183 notifManager.notifyAsUser(TAG, SystemMessage.NOTE_SYSTEM_UPGRADING, notif,
/frameworks/base/packages/SystemUI/src/com/android/systemui/media/controls/domain/pipeline/
DMediaDataProcessor.kt745 val notif: Notification = sbn.notification in <lambda>() constant
748 notif.extras.getParcelable( in <lambda>()
762 song = HybridGroupManager.resolveTitle(notif) in <lambda>()
784 notif.getLargeIcon() in <lambda>()
802 artist = HybridGroupManager.resolveText(notif) in <lambda>()
891 notif.contentIntent, in <lambda>()
950 val notif = sbn.notification in <lambda>() constant
952 val actions = notif.actions in <lambda>()
954 notif.extras.getIntArray(Notification.EXTRA_COMPACT_ACTIONS)?.toMutableList() in <lambda>()
DLegacyMediaDataManagerImpl.kt799 val notif: Notification = sbn.notification in loadMediaDataInBg() constant
802 notif.extras.getParcelable( in loadMediaDataInBg()
817 song = HybridGroupManager.resolveTitle(notif) in loadMediaDataInBg()
839 notif.getLargeIcon() in loadMediaDataInBg()
857 artist = HybridGroupManager.resolveText(notif) in loadMediaDataInBg()
945 notif.contentIntent, in loadMediaDataInBg()
1004 val notif = sbn.notification in createActionsFromNotification() constant
1006 val actions = notif.actions in createActionsFromNotification()
1008 notif.extras.getIntArray(Notification.EXTRA_COMPACT_ACTIONS)?.toMutableList() in createActionsFromNotification()
/frameworks/native/libs/binder/ndk/tests/
Dlibbinder_ndk_unit_test.cpp304 auto* notif = AServiceManager_registerForServiceNotifications( in TEST() local
306 ASSERT_NE(notif, nullptr); in TEST()
309 AServiceManager_NotificationRegistration_delete(notif); in TEST()
319 auto* notif = AServiceManager_registerForServiceNotifications( in TEST() local
321 ASSERT_NE(notif, nullptr); in TEST()
324 AServiceManager_NotificationRegistration_delete(notif); in TEST()
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DSwipeHelper.java870 Notification notif = enr.getEntry().getSbn().getNotification(); in isAvailableToDragAndDrop() local
871 PendingIntent dragIntent = notif.contentIntent != null ? notif.contentIntent in isAvailableToDragAndDrop()
872 : notif.fullScreenIntent; in isAvailableToDragAndDrop()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/media/controls/domain/pipeline/
DMediaDataProcessorTest.kt489 val notif = in testOnNotificationAdded_hasSubstituteName_isUsed() constant
501 mediaDataProcessor.onNotificationAdded(KEY, notif) in testOnNotificationAdded_hasSubstituteName_isUsed()
1213 val notif = in testBadArtwork_doesNotUse() constant
1223 mediaDataProcessor.onNotificationAdded(KEY, notif) in testBadArtwork_doesNotUse()
1598 val notif = in testTooManyCompactActions_isTruncated() constant
1614 mediaDataProcessor.onNotificationAdded(KEY, notif) in testTooManyCompactActions_isTruncated()
1636 val notif = in testTooManyNotificationActions_isTruncated() constant
1650 mediaDataProcessor.onNotificationAdded(KEY, notif) in testTooManyNotificationActions_isTruncated()
/frameworks/opt/telephony/flags/
Dmisc.aconfig36 …description: "When set, the no wifi emergency calling availability notif will have a do not ask ag…

12