OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:AlertUtils
(Results
1 - 3
of
3
) sorted by null
/packages/apps/Calendar/src/com/android/calendar/alerts/
AlertUtils.java
43
public class
AlertUtils
{
44
private static final String TAG = "
AlertUtils
";
SnoozeAlarmsService.java
51
long eventId = intent.getLongExtra(
AlertUtils
.EVENT_ID_KEY, -1);
52
long eventStart = intent.getLongExtra(
AlertUtils
.EVENT_START_KEY, -1);
53
long eventEnd = intent.getLongExtra(
AlertUtils
.EVENT_END_KEY, -1);
57
int notificationId = intent.getIntExtra(
AlertUtils
.NOTIFICATION_ID_KEY,
58
AlertUtils
.EXPIRED_GROUP_NOTIFICATION_ID);
64
if (notificationId !=
AlertUtils
.EXPIRED_GROUP_NOTIFICATION_ID) {
79
long alarmTime = System.currentTimeMillis() +
AlertUtils
.SNOOZE_DELAY;
80
ContentValues values =
AlertUtils
.makeContentValues(eventId, eventStart, eventEnd,
83
AlertUtils
.scheduleAlarm(SnoozeAlarmsService.this,
AlertUtils
.createAlarmManager(this)
[
all
...]
AlertService.java
303
return generateAlerts(context, nm,
AlertUtils
.createAlarmManager(context), prefs,
342
String summaryText =
AlertUtils
.formatTimeLocation(context, info.startMillis,
361
String summaryText =
AlertUtils
.formatTimeLocation(context, info.startMillis,
378
String summaryText =
AlertUtils
.formatTimeLocation(context, info.startMillis,
382
AlertUtils
.EXPIRED_GROUP_NOTIFICATION_ID, false,
398
+ ", notificationId:" +
AlertUtils
.EXPIRED_GROUP_NOTIFICATION_ID);
402
nm.notify(
AlertUtils
.EXPIRED_GROUP_NOTIFICATION_ID, notification);
404
nm.cancel(
AlertUtils
.EXPIRED_GROUP_NOTIFICATION_ID);
422
AlertUtils
.scheduleNextNotificationRefresh(context, alarmMgr, nextRefreshTime);
436
AlertUtils
.flushOldAlertsFromInternalStorage(context)
[
all
...]
Completed in 879 milliseconds