D | MtpDocumentsService.java | 63 final Notification[] notifications = intent.hasExtra(EXTRA_DEVICE_NOTIFICATIONS) ? in onStartCommand() local 66 return updateForegroundState(ids, notifications) ? START_STICKY : START_NOT_STICKY; in onStartCommand() 76 @Nullable int[] ids, @Nullable Notification[] notifications) { in updateForegroundState() argument 81 Preconditions.checkArgument(notifications != null); in updateForegroundState() 82 Preconditions.checkArgument(ids.length == notifications.length); in updateForegroundState() 89 startForeground(ids[i], notifications[i]); in updateForegroundState() 93 mNotificationManager.notify(ids[i], notifications[i]); in updateForegroundState() 118 final Notification[] notifications = new Notification[src.length]; in castToNotifications() local 120 notifications[i] = (Notification) src[i]; in castToNotifications() 122 return notifications; in castToNotifications()
|