Searched refs:AlarmIntentService (Results 1 – 3 of 3) sorted by relevance
33 public class AlarmIntentService extends IntentService { class35 public static final String ALARM_WENT_OFF_ACTION = AlarmIntentService.class.getName()39 public AlarmIntentService() { in AlarmIntentService() method in AlarmIntentService40 super(AlarmIntentService.class.getName()); in AlarmIntentService()
47 Intent intent = new Intent(mContext, AlarmIntentService.class); in scheduleAlarm()48 intent.putExtra(AlarmIntentService.ALARM_KEY, alarm); in scheduleAlarm()73 Intent intent = new Intent(mContext, AlarmIntentService.class); in cancelAlarm()74 intent.putExtra(AlarmIntentService.ALARM_KEY, alarm); in cancelAlarm()
21 import com.example.android.directboot.alarms.AlarmIntentService;69 new IntentFilter(AlarmIntentService.ALARM_WENT_OFF_ACTION)); in onActivityCreated()132 Alarm alarm = intent.getParcelableExtra(AlarmIntentService.ALARM_KEY); in onReceive()