Home | History | Annotate | Download | only in notificationshowcase

Lines Matching defs:when

45         if (intent.hasExtra("id") && intent.hasExtra("when")) {
50 final long when = intent.getLongExtra("when", 0L);
51 Log.v(TAG, "id: " + id + " when: " + when + " update: " + update);
53 NotificationService.makeSmsNotification(this, update, id, when));
56 Log.v(TAG, "when extra was " + (intent.hasExtra("when") ? "present" : "missing"));
60 public static PendingIntent getPendingIntent(Context context, int update, int id, long when) {
65 updateIntent.putExtra("when", when);