Searched defs:notification (Results 1 - 25 of 51) sorted by relevance

123

/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 DGlobalSortKeyComparator.java16 package com.android.server.notification;
H A DNotificationComparator.java16 package com.android.server.notification;
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 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 DPackagePriorityExtractor.java16 package com.android.server.notification;
33 if (DBG) Slog.d(TAG, "skipping empty notification");
H A DPackageVisibilityExtractor.java16 package com.android.server.notification;
33 if (DBG) Slog.d(TAG, "skipping empty notification");
H A DPropConfig.java17 package com.android.server.notification;
H A DRankingConfig.java16 package com.android.server.notification;
H A DRankingReconsideration.java16 package com.android.server.notification;
85 * Analyse the notification. This will be called on a worker thread. To
92 * Apply any computed changes to the notification record. This method will be
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;
H A DDowntimeCalendar.java17 package com.android.server.notification;
23 import android.service.notification.ZenModeConfig;
24 import android.service.notification.ZenModeConfig.DowntimeInfo;
H A DNotificationDelegate.java17 package com.android.server.notification;
/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/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/service/notification/
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...]
H A DNotificationRankingUpdate.java16 package android.service.notification;
H A DCondition.java17 package android.service.notification;
H A DConditionProviderService.java17 package android.service.notification;
42 * <action android:name="android.service.notification.ConditionProviderService" />
63 = "android.service.notification.ConditionProviderService";
88 Log.v(TAG, "Unable to contact notification manager", ex);
/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
/frameworks/base/services/tests/servicestests/src/com/android/server/notification/
H A DValidateNotificationPeopleTest.java16 package com.android.server.notification;
H A DRankingHelperTest.java16 package com.android.server.notification;
20 import android.service.notification.StatusBarNotification;
/frameworks/support/v4/java/android/support/v4/app/
H A DNotificationCompatSideChannelService.java33 * {@link android.service.notification.NotificationListenerService} within your package.
59 * Handle a side-channeled notification being posted.
61 public abstract void notify(String packageName, int id, String tag, Notification notification); argument
64 * Handle a side-channelled notification being cancelled.
75 public void notify(String packageName, int id, String tag, Notification notification) argument
80 NotificationCompatSideChannelService.this.notify(packageName, id, tag, 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 DService.java627 * notification to be shown to the user while in this state.
642 * @param id The identifier for this notification as per
645 * @param notification The Notification to be displayed.
649 public final void startForeground(int id, Notification notification) { argument
653 notification, true);
661 * @param removeNotification If true, the notification previously provided

Completed in 2756 milliseconds

123