Home
last modified time | relevance | path

Searched refs:extender (Results 1 – 20 of 20) sorted by relevance

/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/notifcollection/
H A DSelfTrackingLifetimeExtenderTest.kt66 extender = TestableSelfTrackingLifetimeExtender()
67 extender.setCallback(callback)
74 assertThat(extender.name).isEqualTo("Testable")
93 extender.cancelLifetimeExtension(entry1)
102 extender.endLifetimeExtension(entry1.key)
114 extender.endLifetimeExtension(entry1.key)
153 extender.endAllLifetimeExtensions()
169 extender.endLifetimeExtension(entry1.key)
183 extender.endLifetimeExtension(entry1.key)
197 extender.endAllLifetimeExtensions()
[all …]
/aosp12/frameworks/base/core/java/android/hardware/camera2/
H A DCameraExtensionCharacteristics.java463 return extender.isExtensionAvailable(cameraId); in isExtensionSupported()
492 IAdvancedExtenderImpl extender; in initializeAdvancedExtension() local
494 extender = CameraExtensionManagerGlobal.get().initializeAdvancedExtension( in initializeAdvancedExtension()
500 if (extender == null) { in initializeAdvancedExtension()
504 return extender; in initializeAdvancedExtension()
604 IAdvancedExtenderImpl extender = initializeAdvancedExtension(extension); in getExtensionSupportedSizes() local
605 extender.init(mCameraId); in getExtensionSupportedSizes()
607 extender.getSupportedPreviewOutputResolutions(mCameraId), in getExtensionSupportedSizes()
669 extender.init(mCameraId); in getExtensionSupportedSizes()
752 IAdvancedExtenderImpl extender = initializeAdvancedExtension(extension); in getEstimatedCaptureLatencyRangeMillis() local
[all …]
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DNotificationEntryManager.java207 pw.println(" " + extender.getClass().getSimpleName()); in dump()
250 for (NotificationLifetimeExtender extender : extenders) { in addNotificationLifetimeExtenders()
251 addNotificationLifetimeExtender(extender); in addNotificationLifetimeExtenders()
257 mNotificationLifetimeExtenders.add(extender); in addNotificationLifetimeExtender()
258 extender.setCallback(key -> removeNotification(key, mLatestRankingMap, in addNotificationLifetimeExtender()
469 extendLifetime(pendingEntry, extender); in removeNotificationInternal()
499 if (extender.shouldExtendLifetime(entry)) { in removeNotificationInternal()
501 extendLifetime(entry, extender); in removeNotificationInternal()
820 if (activeExtender != null && activeExtender != extender) { in extendLifetime()
823 mRetainedNotifications.put(entry, extender); in extendLifetime()
[all …]
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/
H A DNotifCollection.java216 if (mLifetimeExtenders.contains(extender)) { in addNotificationLifetimeExtender()
219 mLifetimeExtenders.add(extender); in addNotificationLifetimeExtender()
220 extender.setCallback(this::onEndLifetimeExtension); in addNotificationLifetimeExtender()
536 @NonNull NotifLifetimeExtender extender, in onEndLifetimeExtension()
544 if (!entry.mLifetimeExtenders.remove(extender)) { in onEndLifetimeExtension()
548 extender.getName(), in onEndLifetimeExtension()
549 extender))); in onEndLifetimeExtension()
554 extender, in onEndLifetimeExtension() local
567 extender.cancelLifetimeExtension(entry); in cancelLifetimeExtension()
580 for (NotifLifetimeExtender extender : mLifetimeExtenders) { in updateLifetimeExtension()
[all …]
H A DNotifPipeline.java120 public void addNotificationLifetimeExtender(NotifLifetimeExtender extender) { in addNotificationLifetimeExtender() argument
121 mNotifCollection.addNotificationLifetimeExtender(extender); in addNotificationLifetimeExtender()
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
H A DNotificationEntryManagerTest.java436 NotificationLifetimeExtender extender = mock(NotificationLifetimeExtender.class); in testLifetimeExtenders_ifNotificationIsRetainedItIsntRemoved() local
437 when(extender.shouldExtendLifetime(mEntry)).thenReturn(true); in testLifetimeExtenders_ifNotificationIsRetainedItIsntRemoved()
438 mEntryManager.addNotificationLifetimeExtender(extender); in testLifetimeExtenders_ifNotificationIsRetainedItIsntRemoved()
444 verify(extender).setShouldManageLifetime(mEntry, true); in testLifetimeExtenders_ifNotificationIsRetainedItIsntRemoved()
456 mEntryManager.addNotificationLifetimeExtender(extender); in testLifetimeExtenders_whenRetentionEndsNotificationIsRemoved()
458 assertTrue(extender.isManaging(mEntry.getKey())); in testLifetimeExtenders_whenRetentionEndsNotificationIsRemoved()
461 extender.setExtendLifetimes(false); in testLifetimeExtenders_whenRetentionEndsNotificationIsRemoved()
462 extender.getCallback().onSafeToRemove(mEntry.getKey()); in testLifetimeExtenders_whenRetentionEndsNotificationIsRemoved()
475 when(extender.shouldExtendLifetime(mEntry)).thenReturn(true); in testLifetimeExtenders_whenNotificationUpdatedRetainersAreCanceled()
476 mEntryManager.addNotificationLifetimeExtender(extender); in testLifetimeExtenders_whenNotificationUpdatedRetainersAreCanceled()
[all …]
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/notifcollection/
H A DNotifCollectionLogger.kt177 fun logLifetimeExtended(key: String, extender: NotifLifetimeExtender) {
180 str2 = extender.name
188 extender: NotifLifetimeExtender,
193 str2 = extender.name
H A DNotifLifetimeExtender.java65 @NonNull NotifLifetimeExtender extender, in onEndLifetimeExtension()
/aosp12/packages/apps/Dialer/java/com/android/contacts/common/extensions/
H A DPhoneDirectoryExtenderAccessor.java30 public static void setForTesting(PhoneDirectoryExtender extender) { in setForTesting() argument
31 instance = extender; in setForTesting()
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
H A DNotificationRemoteInputManagerTest.java124 for (NotificationLifetimeExtender extender : mRemoteInputManager.getLifetimeExtenders()) { in setUp()
125 extender.setCallback( in setUp()
/aosp12/frameworks/base/core/java/android/hardware/camera2/impl/
H A DCameraAdvancedExtensionSessionImpl.java160 IAdvancedExtenderImpl extender = CameraExtensionCharacteristics.initializeAdvancedExtension( in createCameraAdvancedExtensionSession() local
162 extender.init(cameraId); in createCameraAdvancedExtensionSession()
165 extender, cameraDevice, repeatingRequestSurface, burstCaptureSurface, in createCameraAdvancedExtensionSession()
173 @NonNull IAdvancedExtenderImpl extender, @NonNull CameraDevice cameraDevice, in CameraAdvancedExtensionSessionImpl() argument
177 mAdvancedExtender = extender; in CameraAdvancedExtensionSessionImpl()
/aosp12/frameworks/base/core/java/android/app/
H A DNotification.java2018 public Builder extend(Extender extender) { in extend() argument
2019 extender.extend(this); in extend()
4996 public Builder extend(Extender extender) { in extend() argument
4997 extender.extend(this); in extend()
/aosp12/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
H A DNotificationManagerServiceTest.java727 Notification.TvExtender extender) { in generateNotificationRecord() argument
735 if (extender != null) { in generateNotificationRecord()
736 nb.extend(extender); in generateNotificationRecord()
/aosp12/frameworks/base/tools/aapt2/integration-tests/CommandTests/
H A Dandroid-28.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/net/ javax/ ...
/aosp12/packages/inputmethods/LatinIME/dictionaries/
H A Des_wordlist.combined.gz1dictionary=main:es,locale=es,description=Español,date=1414726268, ...
H A Den_US_wordlist.combined.gz1dictionary=main:en_us,locale=en_US,description=English (US),date ...
H A Den_GB_wordlist.combined.gz1dictionary=main:en_gb,locale=en_GB,description=English (UK),date ...
H A Den_wordlist.combined.gz1dictionary=main:en,locale=en,description=English,date=1414726273, ...
H A Dpt_PT_wordlist.combined.gz1dictionary=main:pt_pt,locale=pt_PT,description=Português (Portugal),date ...
H A Dro_wordlist.combined.gz1dictionary=main:ro,locale=ro,description=Română,date=1412325511, ...