Searched refs:AlertReceiver (Results 1 - 6 of 6) sorted by relevance

/packages/apps/Calendar/src/com/android/calendar/
H A DGeneralPreferences.java49 import com.android.calendar.alerts.AlertReceiver;
286 intent.setClass(a, AlertReceiver.class);
288 intent.setAction(AlertReceiver.ACTION_DISMISS_OLD_REMINDERS);
290 intent.setAction(AlertReceiver.EVENT_REMINDER_APP_ACTION);
/packages/apps/Calendar/src/com/android/calendar/alerts/
H A DQuickResponseActivity.java106 Intent emailIntent = AlertReceiver.createEmailIntent(QuickResponseActivity.this,
H A DAlarmScheduler.java316 Intent intent = new Intent(AlertReceiver.EVENT_REMINDER_APP_ACTION);
317 intent.setClass(context, AlertReceiver.class);
H A DAlertUtils.java105 * will generate an intent using AlertReceiver.EVENT_REMINDER_APP_ACTION.
128 Intent intent = new Intent(AlertReceiver.EVENT_REMINDER_APP_ACTION);
129 intent.setClass(context, AlertReceiver.class);
H A DAlertService.java205 action.equals(AlertReceiver.EVENT_REMINDER_APP_ACTION) ||
241 } else if (action.equals(AlertReceiver.ACTION_DISMISS_OLD_REMINDERS)) {
380 notification = AlertReceiver.makeBasicNotification(context, info.eventName,
386 notification = AlertReceiver.makeDigestNotification(context,
871 NotificationWrapper notification = AlertReceiver.makeExpandingNotification(context,
1094 // make sure the wake lock acquired by AlertReceiver is released.
1095 AlertReceiver.finishStartingService(AlertService.this, msg.arg1);
H A DAlertReceiver.java66 * -n "com.android.calendar/.alerts.AlertReceiver"
68 public class AlertReceiver extends BroadcastReceiver { class in inherits:BroadcastReceiver
69 private static final String TAG = "AlertReceiver";
95 HandlerThread thr = new HandlerThread("AlertReceiver async");
626 * Creates a broadcast pending intent that fires to AlertReceiver when the email button
652 broadcastIntent.setClass(context, AlertReceiver.class);
785 broadcastIntent.setClass(context, AlertReceiver.class);
835 broadcastIntent.setClass(context, AlertReceiver.class);

Completed in 78 milliseconds