Home | History | Annotate | Download | only in deskclock

Lines Matching full:context

23 import android.content.Context;
41 public void onReceive(final Context context, final Intent intent) {
43 final WakeLock wl = AlarmAlertWakeLock.createPartialWakeLock(context);
47 handleIntent(context, intent);
54 private void handleIntent(Context context, Intent intent) {
57 updateNotification(context, (Alarm)
69 Alarms.disableSnoozeAlert(context, alarm.id);
70 Alarms.setNextAlert(context);
75 Alarms.saveSnoozeAlert(context, Alarms.INVALID_ALARM_ID, -1);
78 context.sendBroadcast(new Intent(Alarms.ALARM_SNOOZE_CANCELLED));
101 Alarms.setNextAlert(context);
106 Alarms.disableSnoozeAlert(context, alarm.id);
109 Alarms.enableAlarm(context, alarm.id, false);
113 Alarms.setNextAlert(context);
129 AlarmAlertWakeLock.acquireCpuWakeLock(context);
133 context.sendBroadcast(closeDialogs);
138 KeyguardManager km = (KeyguardManager) context.getSystemService(
139 Context.KEYGUARD_SERVICE);
149 context.startService(playAlarm);
154 Intent notify = new Intent(context, AlarmAlertFullScreen.class);
156 PendingIntent pendingNotify = PendingIntent.getActivity(context,
162 PendingIntent pendingSnooze = PendingIntent.getBroadcast(context,
166 PendingIntent pendingDismiss = PendingIntent.getBroadcast(context,
171 String alarmTime = Alarms.formatTime(context, cal);
174 String label = alarm.getLabelOrDefault(context);
176 Notification n = new Notification.Builder(context)
186 context.getResources().getString(R.string.alarm_alert_snooze_text),
189 context.getResources().getString(R.string.alarm_alert_dismiss_text),
196 Intent alarmAlert = new Intent(context, c);
200 n.fullScreenIntent = PendingIntent.getActivity(context, alarm.id, alarmAlert, 0);
204 NotificationManager nm = getNotificationManager(context);
208 private NotificationManager getNotificationManager(Context context) {
210 context.getSystemService(Context.NOTIFICATION_SERVICE);
213 private void updateNotification(Context context, Alarm alarm, int timeout) {
214 NotificationManager nm = getNotificationManager(context);
225 Intent viewAlarm = new Intent(context, AlarmClock.class);
228 PendingIntent.getActivity(context, alarm.id, viewAlarm, 0);
232 String label = alarm.getLabelOrDefault(context);
235 n.setLatestEventInfo(context, label,
236 context.getString(R.string.alarm_alert_alert_silenced, timeout),