Searched refs:notification (Results 1 - 25 of 86) sorted by relevance

1234

/frameworks/base/core/java/android/service/notification/
H A DIStatusBarNotificationHolder.aidl17 package android.service.notification;
19 import android.service.notification.StatusBarNotification;
H A DCondition.aidl17 package android.service.notification;
H A DNotificationRankingUpdate.aidl17 package android.service.notification;
H A DStatusBarNotification.aidl17 package android.service.notification;
H A DZenModeConfig.aidl17 package android.service.notification;
H A DIConditionListener.aidl17 package android.service.notification;
20 import android.service.notification.Condition;
H A DIConditionProvider.aidl17 package android.service.notification;
20 import android.service.notification.Condition;
H A DINotificationListener.aidl17 package android.service.notification;
19 import android.service.notification.IStatusBarNotificationHolder;
20 import android.service.notification.StatusBarNotification;
21 import android.service.notification.NotificationRankingUpdate;
H A DStatusBarNotification.java17 package android.service.notification;
26 * the status bar and any {@link android.service.notification.NotificationListenerService}s.
38 private final Notification notification; field in class:StatusBarNotification
46 int initialPid, int score, Notification notification, UserHandle user) {
47 this(pkg, opPkg, id, tag, uid, initialPid, score, notification, user,
52 int initialPid, int score, Notification notification, UserHandle user,
55 if (notification == null) throw new NullPointerException();
64 this.notification = notification;
83 this.notification
45 StatusBarNotification(String pkg, String opPkg, int id, String tag, int uid, int initialPid, int score, Notification notification, UserHandle user) argument
51 StatusBarNotification(String pkg, String opPkg, int id, String tag, int uid, int initialPid, int score, Notification notification, UserHandle user, long postTime) argument
[all...]
/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationSignalExtractor.java17 package com.android.server.notification;
24 * not be passed on to {@link android.service.notification.NotificationListenerService}s.
32 * Called once per notification that is posted or updated.
37 * update events to the {@link android.service.notification.NotificationListenerService}s.
39 public RankingReconsideration process(NotificationRecord notification); argument
H A DNotificationIntrusivenessExtractor.java17 package com.android.server.notification;
24 * This {@link com.android.server.notification.NotificationSignalExtractor} noticies noisy
31 /** Length of time (in milliseconds) that an intrusive or noisy notification will stay at
41 if (DBG) Slog.d(TAG, "skipping empty notification");
45 final Notification notification = record.getNotification();
46 if ((notification.defaults & Notification.DEFAULT_VIBRATE) != 0 ||
47 notification.vibrate != null ||
48 (notification.defaults & Notification.DEFAULT_SOUND) != 0 ||
49 notification.sound != null ||
50 notification
[all...]
H A DNotificationManagerInternal.java17 package com.android.server.notification;
23 String tag, int id, Notification notification, int[] idReceived, int userId);
22 enqueueNotification(String pkg, String basePkg, int callingUid, int callingPid, String tag, int id, Notification notification, int[] idReceived, int userId) argument
H A DNotificationRecord.java16 package com.android.server.notification;
25 import android.service.notification.StatusBarNotification;
36 * {@link android.service.notification.NotificationListenerService}s.
59 // is this notification currently being intercepted by Zen Mode?
101 final Notification notification = sbn.getNotification();
104 pw.println(prefix + " icon=0x" + Integer.toHexString(notification.icon)
105 + " / " + idDebugString(baseContext, sbn.getPackageName(), notification.icon));
106 pw.println(prefix + " pri=" + notification.priority + " score=" + sbn.getScore());
109 pw.println(prefix + " contentIntent=" + notification.contentIntent);
110 pw.println(prefix + " deleteIntent=" + notification
[all...]
H A DNotificationUsageStats.java17 package com.android.server.notification;
28 import android.service.notification.StatusBarNotification;
31 import com.android.server.notification.NotificationManagerService.DumpFilter;
38 * Keeps track of notification activity, display, and user interaction.
41 * notification usage. Some metrics are updated as events occur. Others, namely
42 * those involving durations, are updated as the notification is canceled.</p>
65 * Called when a notification has been posted.
67 public synchronized void registerPostedByApp(NotificationRecord notification) { argument
68 notification.stats = new SingleNotificationStats();
69 notification
81 registerUpdatedByApp(NotificationRecord notification, NotificationRecord old) argument
91 registerRemovedByApp(NotificationRecord notification) argument
105 registerDismissedByUser(NotificationRecord notification) argument
119 registerClickedByUser(NotificationRecord notification) argument
134 registerCancelDueToClick(NotificationRecord notification) argument
146 registerCancelUnknown(NotificationRecord notification) argument
592 logPosted(NotificationRecord notification) argument
596 logClicked(NotificationRecord notification) argument
600 logRemoved(NotificationRecord notification) argument
604 logDismissed(NotificationRecord notification) argument
[all...]
H A DGlobalSortKeyComparator.java16 package com.android.server.notification;
H A DRankingConfig.java16 package com.android.server.notification;
H A DCountdownConditionProvider.java17 package com.android.server.notification;
27 import android.service.notification.Condition;
28 import android.service.notification.ConditionProviderService;
29 import android.service.notification.IConditionProvider;
30 import android.service.notification.ZenModeConfig;
35 import com.android.server.notification.NotificationManagerService.DumpFilter;
/frameworks/support/v4/gingerbread/android/support/v4/app/
H A DNotificationCompatGingerbread.java24 public static Notification add(Notification notification, Context context, argument
27 notification.setLatestEventInfo(context, contentTitle, contentText, contentIntent);
28 notification.fullScreenIntent = fullScreenIntent;
29 return notification;
/frameworks/base/core/java/android/app/
H A DNotificationManager.java50 * unspecified. This pair identifies this notification from your app to the
53 * a new set of notification parameters, it will be updated. For example,
57 * this notification.
96 IBinder b = ServiceManager.getService("notification");
112 * Post a notification to be shown in the status bar. If a notification with
116 * @param id An identifier for this notification unique within your
118 * @param notification A {@link Notification} object describing what to show the user. Must not
121 public void notify(int id, Notification notification) argument
123 notify(null, id, notification);
137 notify(String tag, int id, Notification notification) argument
164 notifyAsUser(String tag, int id, Notification notification, UserHandle user) argument
[all...]
H A DINotificationManager.aidl27 import android.service.notification.Condition;
28 import android.service.notification.IConditionListener;
29 import android.service.notification.IConditionProvider;
30 import android.service.notification.INotificationListener;
31 import android.service.notification.StatusBarNotification;
32 import android.service.notification.ZenModeConfig;
42 in Notification notification, inout int[] idReceived, int userId);
/frameworks/base/services/core/java/com/android/server/statusbar/
H A DStatusBarManagerInternal.java19 import com.android.server.notification.NotificationDelegate;
/frameworks/support/v4/eclair/android/support/v4/app/
H A DNotificationManagerCompatEclair.java29 Notification notification) {
30 notificationManager.notify(tag, id, notification);
28 postNotification(NotificationManager notificationManager, String tag, int id, Notification notification) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationOverflowIconsView.java58 public void addNotification(NotificationData.Entry notification) { argument
60 notification.notification.getNotification());
63 v.set(notification.icon.getStatusBarIcon());
64 applyColor(notification.notification.getNotification(), v);
68 private void applyColor(Notification notification, StatusBarIconView view) { argument
H A DNotificationData.java20 import android.service.notification.NotificationListenerService;
21 import android.service.notification.NotificationListenerService.Ranking;
22 import android.service.notification.NotificationListenerService.RankingMap;
23 import android.service.notification.StatusBarNotification;
42 public StatusBarNotification notification; field in class:NotificationData.Entry
49 public boolean autoRedacted; // whether the redacted notification was generated by us
50 public boolean legacy; // whether the notification has a legacy, dark background
55 this.notification = n;
76 * Resets the notification entry to be re-used.
104 // Upsort current media notification
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DINotificationSideChannel.aidl29 * Send an ambient notification to the service.
31 void notify(String packageName, int id, String tag, in Notification notification);
34 * Cancel an already-notified notification.

Completed in 6194 milliseconds

1234