Lines Matching refs:key

879     void handleNotificationError(IBinder key, StatusBarNotification n, String message) {
880 removeNotification(key);
888 protected StatusBarNotification removeNotificationViews(IBinder key) {
889 NotificationData.Entry entry = mNotificationData.remove(key);
891 Slog.w(TAG, "removeNotification for unknown key: " + key);
903 protected StatusBarIconView addNotificationViews(IBinder key,
906 Slog.d(TAG, "addNotificationViews(key=" + key + ", notification=" + notification);
921 handleNotificationError(key, notification, "Couldn't create icon: " + ic);
925 NotificationData.Entry entry = new NotificationData.Entry(key, notification, iconView);
927 handleNotificationError(key, notification, "Couldn't expand RemoteViews for: "
983 protected abstract void tick(IBinder key, StatusBarNotification n, boolean firstTime);
992 public void updateNotification(IBinder key, StatusBarNotification notification) {
993 if (DEBUG) Slog.d(TAG, "updateNotification(" + key + " -> " + notification + ")");
995 final NotificationData.Entry oldEntry = mNotificationData.findByKey(key);
997 Slog.w(TAG, "updateNotification for unknown key: " + key);
1049 if (DEBUG) Slog.d(TAG, "reusing notification for key: " + key);
1073 handleNotificationError(key, notification, "Couldn't update icon: " + ic);
1081 removeNotificationViews(key);
1082 addNotificationViews(key, notification);
1085 if (DEBUG) Slog.d(TAG, "not reusing notification for key: " + key);
1090 removeNotificationViews(key);
1091 addNotificationViews(key, notification);
1093 final NotificationData.Entry newEntry = mNotificationData.findByKey(key);
1110 tick(key, notification, false);