Searched refs:screenshotId (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/ |
D | ScreenshotActionsController.kt | 44 val screenshotId = UUID.randomUUID() in setCurrentScreenshot() constant 45 currentScreenshotId = screenshotId in setCurrentScreenshot() 46 actionProviders[screenshotId] = in setCurrentScreenshot() 48 screenshotId, in setCurrentScreenshot() 51 ActionsCallback(screenshotId), in setCurrentScreenshot() 53 return screenshotId in setCurrentScreenshot() 60 fun onAssistContent(screenshotId: UUID, assistContent: AssistContent?) { in onAssistContent() 61 actionProviders[screenshotId]?.onAssistContent(assistContent) in onAssistContent() 64 fun onScrollChipReady(screenshotId: UUID, onClick: Runnable) { in onScrollChipReady() 65 if (screenshotId == currentScreenshotId) { in onScrollChipReady() [all …]
|
D | ScreenshotSmartActions.java | 64 String screenshotId, Uri screenshotUri, Bitmap image, in getSmartActionsFuture() argument 72 screenshotId, screenshotUri, smartActionsProvider.getClass(), actionType, in getSmartActionsFuture() 97 smartActionsFuture = smartActionsProvider.getActions(screenshotId, screenshotUri, image, in getSmartActionsFuture() 105 notifyScreenshotOp(screenshotId, smartActionsProvider, in getSmartActionsFuture() 113 List<Notification.Action> getSmartActions(String screenshotId, in getSmartActions() argument 121 screenshotId, timeoutMs, actionType, smartActionsProvider.getClass())); in getSmartActions() 131 notifyScreenshotOp(screenshotId, smartActionsProvider, in getSmartActions() 147 notifyScreenshotOp(screenshotId, smartActionsProvider, in getSmartActions() 154 void notifyScreenshotOp(String screenshotId, in notifyScreenshotOp() argument 160 smartActionsProvider.getClass(), op, screenshotId, status, durationMs)); in notifyScreenshotOp() [all …]
|
D | ScreenshotNotificationSmartActionsProvider.java | 78 public CompletableFuture<List<Notification.Action>> getActions(String screenshotId, in getActions() argument 96 public void notifyOp(String screenshotId, ScreenshotOp op, ScreenshotOpStatus status, in notifyOp() argument 111 public void notifyAction(String screenshotId, String action, boolean isSmartAction, in notifyAction() argument
|
D | SaveImageInBackgroundTask.java | 240 private static void addIntentExtras(String screenshotId, Intent intent, String actionType, in addIntentExtras() argument 244 .putExtra(ScreenshotController.EXTRA_ID, screenshotId) in addIntentExtras() 253 Notification.Action quickShare, String screenshotId, Uri uri, long imageTime, in createQuickShareAction() argument 259 queryQuickShareAction(screenshotId, image, user, uri); in createQuickShareAction() 278 addIntentExtras(screenshotId, wrappedIntent, actionType, true /* smartActionsEnabled */); in createQuickShareAction() 312 String screenshotId, Bitmap image, UserHandle user, Uri uri) { in queryQuickShareAction() argument 315 screenshotId, uri, image, mSmartActionsProvider, in queryQuickShareAction() 324 screenshotId, quickShareActionsFuture, timeoutMs, in queryQuickShareAction()
|