Home
last modified time | relevance | path

Searched refs:smartActionsFuture (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/screenshot/
DScreenshotNotificationSmartActionsTest.java82 CompletableFuture<List<Notification.Action>> smartActionsFuture = in testExceptionHandlingInGetSmartActionsFuture() local
87 assertNotNull(smartActionsFuture); in testExceptionHandlingInGetSmartActionsFuture()
88 List<Notification.Action> smartActions = smartActionsFuture.get(5, TimeUnit.MILLISECONDS); in testExceptionHandlingInGetSmartActionsFuture()
97 CompletableFuture<List<Notification.Action>> smartActionsFuture = mock( in testExceptionHandlingInGetSmartActions() local
100 when(smartActionsFuture.get(timeoutMs, TimeUnit.MILLISECONDS)).thenThrow( in testExceptionHandlingInGetSmartActions()
103 "", smartActionsFuture, timeoutMs, mSmartActionsProvider, REGULAR_SMART_ACTIONS); in testExceptionHandlingInGetSmartActions()
123 CompletableFuture<List<Notification.Action>> smartActionsFuture = in testUnsupportedBitmapConfiguration() local
129 assertNotNull(smartActionsFuture); in testUnsupportedBitmapConfiguration()
130 List<Notification.Action> smartActions = smartActionsFuture.get(5, TimeUnit.MILLISECONDS); in testUnsupportedBitmapConfiguration()
155 CompletableFuture<List<Notification.Action>> smartActionsFuture = in testSupportedBitmapConfiguration() local
[all …]
DSaveImageInBackgroundTaskTest.kt56 private val smartActionsFuture = mock<CompletableFuture<List<Notification.Action>>>() constant
116 .thenReturn(smartActionsFuture) in setup()
124 eq(smartActionsFuture), in testQueryQuickShare_noAction()
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
DScreenshotSmartActions.java88 CompletableFuture<List<Notification.Action>> smartActionsFuture; in getSmartActionsFuture() local
97 smartActionsFuture = smartActionsProvider.getActions(screenshotId, screenshotUri, image, in getSmartActionsFuture()
101 smartActionsFuture = CompletableFuture.completedFuture(Collections.emptyList()); in getSmartActionsFuture()
110 return smartActionsFuture; in getSmartActionsFuture()
114 CompletableFuture<List<Notification.Action>> smartActionsFuture, int timeoutMs, in getSmartActions() argument
124 List<Notification.Action> actions = smartActionsFuture.get(timeoutMs, in getSmartActions()
DSaveImageInBackgroundTask.java142 CompletableFuture<List<Notification.Action>> smartActionsFuture = in doInBackground() local
155 mScreenshotId, smartActionsFuture, timeoutMs, in doInBackground()